:root {
            --primary-dark: #0a1428; 
            --primary-blue: #1e3a5c;
            --accent-gold: #c8aa6e; 
            --accent-light: #f0e6d2;
            --text-primary: #f0e6d2;
            --text-secondary: #a09b8c;
            --bg-card: #1c2b45;
            --border-color: #2d4569;
            --success: #0acf83;
            --warning: #ff9f1c;
            --danger: #eb5757;
            --font-heading: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            --font-body: 'Roboto', 'Open Sans', sans-serif;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-body);
            line-height: 1.8;
            color: var(--text-primary);
            background-color: var(--primary-dark);
            background-image: linear-gradient(to bottom, var(--primary-dark) 0%, #0c1a32 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #fff;
            text-shadow: 0 0 8px rgba(200, 170, 110, 0.7);
        }
        .site-header {
            background-color: rgba(10, 20, 40, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--accent-gold);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .my-logo {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--accent-gold), #fff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .my-logo:hover {
            text-shadow: 0 0 15px rgba(200, 170, 110, 0.9);
        }
        .search-form {
            display: flex;
            flex-grow: 0.4;
            margin: 0 2rem;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.75rem 1rem;
            border: 1px solid var(--border-color);
            border-radius: 4px 0 0 4px;
            background: var(--bg-card);
            color: var(--text-primary);
            font-size: 1rem;
        }
        .search-form button {
            background: var(--accent-gold);
            color: var(--primary-dark);
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s ease;
        }
        .search-form button:hover {
            background: #e0c060;
        }
        .nav-container {
            display: flex;
            align-items: center;
        }
        .main-nav {
            display: flex;
            gap: 1.5rem;
        }
        .main-nav a {
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--accent-gold);
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 2rem;
            background-color: rgba(28, 43, 69, 0.6);
            font-size: 0.9rem;
            color: var(--text-secondary);
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        .breadcrumb span {
            margin: 0 0.5rem;
        }
        main {
            flex: 1;
            max-width: 1200px;
            width: 100%;
            margin: 2rem auto;
            padding: 0 2rem;
        }
        article {
            background: var(--bg-card);
            border-radius: 12px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid var(--border-color);
            margin-bottom: 3rem;
        }
        h1, h2, h3, h4 {
            font-family: var(--font-heading);
            font-weight: 700;
            line-height: 1.3;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            color: var(--accent-light);
        }
        h1 {
            font-size: 3.2rem;
            text-align: center;
            border-bottom: 3px solid var(--accent-gold);
            padding-bottom: 1.5rem;
            margin-top: 0;
        }
        h2 {
            font-size: 2.4rem;
            color: var(--accent-gold);
            border-left: 5px solid var(--accent-gold);
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.8rem;
        }
        h4 {
            font-size: 1.4rem;
            color: var(--text-secondary);
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 300;
            color: var(--accent-light);
            text-align: center;
            margin-bottom: 2.5rem;
            font-style: italic;
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(30, 58, 92, 0.7), rgba(10, 20, 40, 0.9));
            border-left: 5px solid var(--success);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .stat-card {
            background: rgba(10, 20, 40, 0.6);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 1.5rem;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            border-color: var(--accent-gold);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent-gold);
            display: block;
            line-height: 1;
        }
        .stat-label {
            font-size: 1rem;
            color: var(--text-secondary);
            margin-top: 0.5rem;
        }
        .img-container {
            margin: 2.5rem auto;
            text-align: center;
            max-width: 800px;
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            border: 2px solid var(--accent-gold);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        .img-caption {
            font-size: 0.95rem;
            color: var(--text-secondary);
            margin-top: 0.5rem;
            font-style: italic;
        }
        ul, ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.5rem;
        }
        strong {
            color: var(--accent-light);
            font-weight: 700;
        }
        em {
            color: var(--accent-gold);
        }
        .last-updated {
            text-align: right;
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px dashed var(--border-color);
        }
        .interactive-section {
            margin: 3rem 0;
            padding: 2rem;
            background: rgba(10, 20, 40, 0.5);
            border-radius: 12px;
            border: 1px solid var(--border-color);
        }
        .interactive-title {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        .interactive-title i {
            color: var(--accent-gold);
            font-size: 1.8rem;
        }
        .rating-container {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 1.5rem;
        }
        .star-rating {
            display: flex;
            gap: 0.3rem;
        }
        .star-rating .star {
            font-size: 1.8rem;
            color: var(--text-secondary);
            cursor: pointer;
            transition: color 0.2s ease;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: var(--warning);
        }
        .comment-form, .rating-form {
            display: grid;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-control {
            padding: 0.75rem;
            border-radius: 6px;
            border: 1px solid var(--border-color);
            background: var(--primary-dark);
            color: var(--text-primary);
            font-family: var(--font-body);
            font-size: 1rem;
        }
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        .btn {
            padding: 0.75rem 2rem;
            background: var(--accent-gold);
            color: var(--primary-dark);
            border: none;
            border-radius: 6px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            justify-self: start;
        }
        .btn:hover {
            background: #e0c060;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(200, 170, 110, 0.4);
        }
        .site-footer {
            background-color: #0a0f1c;
            padding: 3rem 2rem 1.5rem;
            border-top: 2px solid var(--accent-gold);
            margin-top: auto;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section h4 {
            color: var(--accent-light);
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid var(--border-color);
            padding-bottom: 0.5rem;
        }
        .footer-links {
            list-style: none;
            margin-left: 0;
        }
        .footer-links li {
            margin-bottom: 0.75rem;
        }
        friend-link {
            display: block;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
        }
        friend-link a {
            display: inline-block;
            margin-right: 1rem;
            margin-bottom: 0.5rem;
            padding: 0.3rem 0.8rem;
            background: rgba(30, 58, 92, 0.5);
            border-radius: 4px;
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.8rem; }
            h2 { font-size: 2.1rem; }
            article { padding: 2rem; }
            .site-header { flex-direction: column; align-items: stretch; gap: 1rem; }
            .search-form { margin: 0.5rem 0; order: 3; width: 100%; }
            .nav-container { order: 2; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--primary-blue);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                box-shadow: 0 10px 20px rgba(0,0,0,0.3);
                border-top: 1px solid var(--border-color);
            }
            .main-nav.active { display: flex; }
            .main-nav a { padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
            .main-nav a:last-child { border-bottom: none; }
            main { padding: 0 1rem; }
            article { padding: 1.5rem; }
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.9rem; }
            .footer-content { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.6rem; }
            .lead { font-size: 1.1rem; }
            .stats-grid { grid-template-columns: 1fr; }
        }
