:root {
            --primary-dark: #1a1a1a;
            --secondary-rust: #9c3d2b;
            --accent-gold: #d4af37;
            --text-light: #f0f0f0;
            --text-gray: #b0b0b0;
            --bg-section: #252525;
            --border-color: #444;
            --highlight: #3a7ca5;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: #ffd166;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to bottom, #0f0f0f, var(--primary-dark));
            padding: 1rem 0;
            border-bottom: 2px solid var(--secondary-rust);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(to right, var(--accent-gold), var(--secondary-rust));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
        }
        .my-logo:hover {
            filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.8));
        }
        .search-form {
            display: flex;
            background: #333;
            border-radius: 30px;
            overflow: hidden;
            border: 1px solid var(--border-color);
        }
        .search-form input {
            background: transparent;
            border: none;
            padding: 12px 20px;
            color: var(--text-light);
            width: 250px;
            outline: none;
        }
        .search-form button {
            background: var(--secondary-rust);
            border: none;
            color: white;
            padding: 0 20px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #b54d3a;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 1rem;
        }
        .main-nav {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        .main-nav a {
            color: var(--text-gray);
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .main-nav a:hover,
        .main-nav a.active {
            color: var(--accent-gold);
            background: rgba(212, 175, 55, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent-gold);
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--text-gray);
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        .content-main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .content-main {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: var(--bg-section);
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .article-content h1 {
            color: var(--accent-gold);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid var(--secondary-rust);
            padding-bottom: 1rem;
        }
        .article-content h2 {
            color: var(--text-light);
            font-size: 2rem;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border-color);
        }
        .article-content h3 {
            color: var(--accent-gold);
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
        }
        .article-content h4 {
            color: var(--highlight);
            font-size: 1.3rem;
            margin: 1.5rem 0 0.8rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight-box {
            background: rgba(156, 61, 43, 0.1);
            border-left: 5px solid var(--secondary-rust);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            background: #2a2a2a;
        }
        .stats-table th, .stats-table td {
            border: 1px solid var(--border-color);
            padding: 12px 15px;
            text-align: left;
        }
        .stats-table th {
            background: var(--secondary-rust);
            color: white;
            font-weight: 600;
        }
        .stats-table tr:nth-child(even) {
            background: #333;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-gray);
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .sidebar {
            background: var(--bg-section);
            padding: 2rem;
            border-radius: 10px;
            height: fit-content;
            position: sticky;
            top: 150px;
        }
        .sidebar h3 {
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        .related-links {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px dashed var(--border-color);
        }
        .related-links a {
            display: block;
            padding: 8px 12px;
            border-radius: 5px;
            background: #333;
            transition: all 0.3s;
        }
        .related-links a:hover {
            background: var(--secondary-rust);
            transform: translateX(5px);
        }
        .user-interaction {
            margin: 3rem 0;
            padding: 2rem;
            background: var(--bg-section);
            border-radius: 10px;
        }
        .user-interaction h2 {
            color: var(--accent-gold);
            margin-bottom: 2rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--text-gray);
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 15px;
            background: #333;
            border: 1px solid var(--border-color);
            border-radius: 5px;
            color: var(--text-light);
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #555;
            margin: 1rem 0;
        }
        .rating-stars .star {
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: var(--accent-gold);
        }
        .submit-btn {
            background: linear-gradient(to right, var(--secondary-rust), #c55);
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 1.1rem;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 600;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(156, 61, 43, 0.4);
        }
        .site-footer {
            background: #0f0f0f;
            padding: 3rem 0 2rem;
            margin-top: 3rem;
            border-top: 2px solid var(--secondary-rust);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            padding: 10px;
            background: #222;
            margin-bottom: 10px;
            border-radius: 5px;
            transition: background 0.3s;
        }
        friend-link:hover {
            background: #333;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                gap: 1rem;
            }
            .my-logo {
                font-size: 1.8rem;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a1a1a;
                padding: 1rem;
                margin-top: 1rem;
                border-radius: 8px;
            }
            .main-nav.active {
                display: flex;
            }
            .nav-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .article-content h1 {
                font-size: 2.2rem;
            }
            .article-content h2 {
                font-size: 1.7rem;
            }
            .article-content {
                padding: 1.5rem;
            }
        }
