:root {
            --primary-color: #b8860b;
            --secondary-color: #8b0000;
            --dark-bg: #0a0a0a;
            --light-bg: #1a1a1a;
            --text-color: #f0e6d2;
            --text-muted: #aaa;
            --accent-color: #ffd700;
            --border-color: #333;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: var(--text-color);
            background-color: var(--dark-bg);
            overflow-x: hidden;
        }
        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-color);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(to bottom, #000, var(--light-bg));
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--secondary-color);
            text-transform: uppercase;
            letter-spacing: 3px;
            font-family: 'Impact', sans-serif;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }
        .logo a span {
            color: var(--primary-color);
        }
        .logo a:hover {
            text-decoration: none;
            color: var(--accent-color);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .nav-links a:hover {
            background-color: rgba(184, 134, 11, 0.2);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--primary-color);
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: var(--light-bg);
            border-bottom: 1px solid var(--border-color);
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin: 0 10px;
            color: var(--text-muted);
        }
        .search-section {
            padding: 2rem 0;
            background-color: rgba(0, 0, 0, 0.5);
            text-align: center;
        }
        .search-box {
            max-width: 600px;
            margin: 0 auto;
        }
        .search-box h2 {
            margin-bottom: 1rem;
            color: var(--accent-color);
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-form input {
            flex: 1;
            padding: 15px;
            border: 2px solid var(--primary-color);
            border-radius: 30px;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--text-color);
            font-size: 1rem;
        }
        .search-form button {
            padding: 0 30px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: linear-gradient(to right, var(--accent-color), #b22222);
            transform: scale(1.05);
        }
        main {
            padding: 2rem 0;
        }
        article {
            background-color: var(--light-bg);
            border-radius: 10px;
            padding: 3rem;
            box-shadow: var(--shadow);
            margin-bottom: 3rem;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--accent-color);
            margin-bottom: 1.5rem;
            line-height: 1.3;
            border-bottom: 3px solid var(--primary-color);
            padding-bottom: 1rem;
        }
        h2 {
            font-size: 2rem;
            color: var(--primary-color);
            margin: 2.5rem 0 1.5rem;
            padding-left: 10px;
            border-left: 5px solid var(--secondary-color);
        }
        h3 {
            font-size: 1.5rem;
            color: var(--text-color);
            margin: 2rem 0 1rem;
            position: relative;
        }
        h3::before {
            content: "◆";
            color: var(--primary-color);
            margin-right: 10px;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: rgba(184, 134, 11, 0.15);
            border-left: 4px solid var(--primary-color);
            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: 2rem 0;
        }
        .stat-card {
            background-color: rgba(0, 0, 0, 0.3);
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-color);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        }
        .stat-card h4 {
            color: var(--accent-color);
            margin-bottom: 0.5rem;
            font-size: 1.3rem;
        }
        .image-container {
            margin: 3rem 0;
            text-align: center;
        }
        .featured-img {
            width: 100%;
            max-width: 800px;
            border-radius: 10px;
            border: 3px solid var(--primary-color);
            box-shadow: 0 0 30px rgba(184, 134, 11, 0.5);
            margin: 0 auto;
        }
        .img-caption {
            margin-top: 1rem;
            font-style: italic;
            color: var(--text-muted);
            font-size: 0.95rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 3rem;
            margin-top: 3rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        aside {
            background-color: rgba(0, 0, 0, 0.3);
            padding: 2rem;
            border-radius: 10px;
            height: fit-content;
            border: 1px solid var(--border-color);
        }
        aside h3 {
            color: var(--primary-color);
            border-bottom: 2px solid var(--secondary-color);
            padding-bottom: 0.5rem;
        }
        .aside-list {
            list-style: none;
            margin-top: 1rem;
        }
        .aside-list li {
            padding: 0.8rem 0;
            border-bottom: 1px dashed var(--border-color);
        }
        .aside-list li:last-child {
            border-bottom: none;
        }
        .aside-list a {
            display: flex;
            align-items: center;
        }
        .aside-list i {
            margin-right: 10px;
            color: var(--primary-color);
        }
        .interactive-section {
            background-color: rgba(26, 26, 26, 0.8);
            padding: 3rem;
            border-radius: 10px;
            margin: 3rem 0;
            border: 1px solid var(--primary-color);
        }
        .rating-form, .comment-form {
            max-width: 800px;
            margin: 0 auto;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--border-color);
            border-radius: 5px;
            color: var(--text-color);
            font-size: 1rem;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 8px rgba(184, 134, 11, 0.5);
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 2rem;
            color: #555;
            margin: 1rem 0;
        }
        .stars i {
            cursor: pointer;
            transition: var(--transition);
        }
        .stars i:hover {
            color: var(--accent-color);
            transform: scale(1.2);
        }
        .submit-btn {
            display: block;
            width: 100%;
            padding: 15px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 1.5rem;
        }
        .submit-btn:hover {
            background: linear-gradient(to right, var(--accent-color), #b22222);
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(0, 0, 0, 0.4);
        }
        .web-links-section {
            padding: 3rem 0;
            background-color: rgba(0, 0, 0, 0.7);
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: var(--light-bg);
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid transparent;
            transition: var(--transition);
        }
        .web-link:hover {
            border-color: var(--primary-color);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        }
        .web-link a {
            font-size: 1.1rem;
            display: block;
            color: var(--text-color);
        }
        .web-link a:hover {
            color: var(--accent-color);
        }
        footer {
            background-color: #000;
            padding: 3rem 0 1.5rem;
            border-top: 3px solid var(--secondary-color);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        .footer-links h4 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                position: fixed;
                top: 80px;
                right: -100%;
                flex-direction: column;
                background-color: var(--dark-bg);
                width: 100%;
                text-align: center;
                padding: 2rem;
                transition: 0.5s;
                box-shadow: var(--shadow);
                border-top: 2px solid var(--primary-color);
            }
            .nav-links.active {
                right: 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            article {
                padding: 2rem 1.5rem;
            }
            .interactive-section {
                padding: 2rem 1.5rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        @media print {
            .interactive-section,
            .search-section,
            .web-links-section,
            footer {
                display: none;
            }
        }
