* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #0a1428;
            --secondary: #1e2a3a;
            --accent: #c8aa6e;
            --gold: #f0e6d2;
            --light: #f5f5f5;
            --grey: #6b7c8a;
            --green: #2d7d46;
            --red: #a3262a;
            --text: #1a1a1a;
            --white: #ffffff;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: var(--light);
            color: var(--text);
            line-height: 1.7;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--primary), #0f1f3d);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0, 0, 0, .3);
        }
        .header-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--accent);
            text-decoration: none;
            letter-spacing: 1px;
            transition: color .3s;
        }
        .my-logo:hover {
            color: var(--gold);
        }
        .my-logo span {
            font-size: .8rem;
            display: block;
            color: var(--grey);
            font-weight: 400;
            letter-spacing: .5px;
        }
        .search-box {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, .1);
            border-radius: 30px;
            padding: 5px 15px;
            margin: 8px 0;
        }
        .search-box input {
            background: transparent;
            border: none;
            outline: none;
            color: var(--white);
            padding: 8px 10px;
            width: 200px;
            font-size: .9rem;
        }
        .search-box button {
            background: transparent;
            border: none;
            color: var(--accent);
            cursor: pointer;
            font-size: 1.1rem;
        }
        .main-nav {
            display: flex;
            gap: 20px;
            list-style: none;
        }
        .main-nav a {
            color: var(--gold);
            text-decoration: none;
            font-size: .95rem;
            padding: 8px 0;
            border-bottom: 2px solid transparent;
            transition: border-color .3s;
        }
        .main-nav a:hover {
            border-color: var(--accent);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--gold);
            font-size: 1.6rem;
            cursor: pointer;
        }
        .breadcrumb {
            background: #e8e4de;
            padding: 8px 0;
            font-size: .85rem;
            color: var(--grey);
        }
        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .hero {
            background: linear-gradient(135deg, #0a1428, #1a2e4a);
            color: var(--gold);
            text-align: center;
            padding: 60px 20px 40px;
            position: relative;
            overflow: hidden;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            letter-spacing: 1px;
            margin-bottom: 15px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, .5);
        }
        .hero p {
            font-size: 1.1rem;
            color: var(--gold);
            opacity: .9;
            max-width: 700px;
            margin: 0 auto;
        }
        .hero-img {
            margin-top: 30px;
        }
        .hero-img img {
            max-width: 100%;
            border-radius: 12px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, .4);
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        .article-body {
            background: var(--white);
            border-radius: 10px;
            padding: 35px;
            box-shadow: 0 3px 15px rgba(0, 0, 0, .06);
        }
        .article-body h2 {
            color: var(--primary);
            font-size: 1.8rem;
            margin: 40px 0 15px;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--accent);
        }
        .article-body h3 {
            color: var(--secondary);
            font-size: 1.3rem;
            margin: 25px 0 10px;
            padding-left: 10px;
            border-left: 4px solid var(--accent);
        }
        .article-body h4 {
            color: var(--primary);
            font-size: 1.1rem;
            margin: 20px 0 8px;
        }
        .article-body p {
            margin-bottom: 15px;
            font-size: .98rem;
        }
        .article-body ul {
            margin: 10px 0 15px 20px;
        }
        .article-body ul li {
            margin-bottom: 6px;
            position: relative;
        }
        .article-body ul li::before {
            content: '▸';
            color: var(--accent);
            position: absolute;
            left: -18px;
        }
        .highlight-box {
            background: #f8f4ec;
            border-left: 4px solid var(--accent);
            padding: 15px 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .stat-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-size: .9rem;
        }
        .stat-table th {
            background: var(--primary);
            color: var(--gold);
            padding: 12px;
            text-align: left;
        }
        .stat-table td {
            padding: 10px 12px;
            border-bottom: 1px solid #eee;
        }
        .stat-table tr:nth-child(even) {
            background: #f9f9f9;
        }
        .sidebar {
            background: var(--white);
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 3px 15px rgba(0, 0, 0, .06);
            height: fit-content;
            position: sticky;
            top: 90px;
        }
        .sidebar h3 {
            color: var(--primary);
            font-size: 1.1rem;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--accent);
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar ul li {
            margin-bottom: 10px;
        }
        .sidebar ul li a {
            color: var(--secondary);
            text-decoration: none;
            font-size: .9rem;
            transition: color .3s, padding-left .3s;
        }
        .sidebar ul li a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        .sidebar ul li a::before {
            content: '» ';
            color: var(--accent);
        }
        .rating-section {
            margin: 40px 0 20px;
            background: #f8f4ec;
            border-radius: 8px;
            padding: 20px;
        }
        .rating-star {
            font-size: 2rem;
            color: #ccc;
            cursor: pointer;
            transition: color .3s;
            display: inline-block;
        }
        .rating-star:hover,
        .rating-star.active {
            color: var(--accent);
        }
        .comments-section {
            margin: 30px 0;
        }
        .comment-item {
            background: #f9f9f9;
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 15px;
            border-left: 3px solid var(--accent);
        }
        .comment-item .meta {
            font-size: .8rem;
            color: var(--grey);
        }
        .comment-form textarea,
        .comment-form input {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 6px;
            margin-bottom: 10px;
            font-family: inherit;
        }
        .btn {
            background: var(--primary);
            color: var(--gold);
            border: none;
            padding: 10px 25px;
            border-radius: 30px;
            cursor: pointer;
            font-size: .9rem;
            transition: background .3s;
        }
        .btn:hover {
            background: var(--secondary);
        }
        .faq-item {
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 10px;
            cursor: pointer;
        }
        .faq-item summary {
            font-weight: 600;
            color: var(--primary);
            cursor: pointer;
            outline: none;
        }
        .site-footer {
            background: var(--primary);
            color: var(--gold);
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .site-footer h4 {
            margin-bottom: 15px;
            color: var(--gold);
        }
        .site-footer ul {
            list-style: none;
        }
        .site-footer ul li {
            margin-bottom: 8px;
        }
        .site-footer a {
            color: var(--gold);
            text-decoration: none;
        }
        .site-footer a:hover {
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(200, 170, 110, .2);
            font-size: .85rem;
            color: var(--grey);
        }
        .updated {
            font-size: .85rem;
            color: var(--grey);
            font-style: italic;
            margin-top: 30px;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
        }
        @media (max-width: 768px) {
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--primary);
                padding: 10px;
                border-radius: 8px;
                gap: 10px;
            }
            .main-nav.open {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .article-body {
                padding: 20px;
            }
            .search-box input {
                width: 120px;
            }
        }
        @media (max-width: 480px) {
            .header-flex {
                gap: 10px;
            }
            .search-box {
                order: 3;
                width: 100%;
            }
            .search-box input {
                width: 100%;
            }
        }
        .table-responsive {
            overflow-x: auto;
        }
        img {
            max-width: 100%;
            height: auto;
        }
