:root {
            --primary-dark: #0a0a12;
            --secondary-dark: #1a1a2e;
            --accent-gold: #d4af37;
            --accent-crimson: #8b0000;
            --text-primary: #f0f0f0;
            --text-secondary: #b0b0c0;
            --border-glow: rgba(212, 175, 55, 0.3);
        }
        * {
            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-primary);
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: color 0.3s, text-shadow 0.3s;
        }
        a:hover {
            color: #fff;
            text-shadow: 0 0 8px var(--accent-gold);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(to bottom, var(--primary-dark), var(--secondary-dark));
            border-bottom: 2px solid var(--accent-gold);
            padding: 1.5rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            letter-spacing: 2px;
            background: linear-gradient(90deg, var(--accent-gold), #fff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 10px rgba(212, 175, 55, 0.5);
        }
        .logo span {
            color: var(--accent-crimson);
            -webkit-text-fill-color: var(--accent-crimson);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        nav a:hover {
            background: rgba(212, 175, 55, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent-gold);
        }
        .breadcrumb {
            padding: 1rem 0;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--accent-gold);
        }
        main {
            padding: 2rem 0;
        }
        article {
            background: var(--secondary-dark);
            border-radius: 12px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            border: 1px solid var(--border-glow);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        h1 {
            font-size: 2.8rem;
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
            text-align: center;
            border-bottom: 2px solid var(--accent-crimson);
            padding-bottom: 1rem;
            text-shadow: 0 2px 5px #000;
        }
        h2 {
            font-size: 2rem;
            color: var(--text-primary);
            margin: 2.5rem 0 1.2rem;
            padding-left: 1rem;
            border-left: 5px solid var(--accent-gold);
        }
        h3 {
            font-size: 1.5rem;
            color: var(--text-secondary);
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            color: var(--accent-gold);
            font-weight: 500;
            text-align: center;
            margin: 2rem 0;
        }
        .highlight {
            background: rgba(212, 175, 55, 0.1);
            border-left: 4px solid var(--accent-gold);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .feature-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 2rem 0;
            border: 3px solid var(--accent-gold);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
            transition: transform 0.5s;
        }
        .feature-img:hover {
            transform: scale(1.01);
        }
        .interactive-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 3rem 0;
        }
        .search-box, .comment-box, .rating-box {
            background: rgba(26, 26, 46, 0.8);
            border: 1px solid var(--border-glow);
            border-radius: 10px;
            padding: 1.8rem;
        }
        .interactive-section h3 {
            margin-top: 0;
            color: var(--accent-gold);
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            margin: 0.8rem 0;
            background: rgba(10, 10, 18, 0.7);
            border: 1px solid #444;
            border-radius: 6px;
            color: var(--text-primary);
        }
        button {
            background: linear-gradient(45deg, var(--accent-gold), #b8941f);
            color: var(--primary-dark);
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        button:hover {
            background: linear-gradient(45deg, #ffd700, var(--accent-gold));
            box-shadow: 0 0 15px var(--accent-gold);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            font-size: 1.8rem;
            color: #444;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: var(--accent-gold);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1rem;
            margin: 3rem 0;
        }
        .web-link {
            background: var(--secondary-dark);
            padding: 1rem;
            border-radius: 6px;
            text-align: center;
            border: 1px solid #333;
            transition: all 0.3s;
        }
        .web-link:hover {
            border-color: var(--accent-gold);
            transform: translateY(-5px);
        }
        footer {
            background: #000;
            padding: 3rem 0 1.5rem;
            text-align: center;
            border-top: 2px solid var(--accent-crimson);
        }
        .copyright {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-top: 2rem;
        }
        @media (max-width: 992px) {
            .footer-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--secondary-dark);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 8px;
            }
            nav ul.show {
                display: flex;
            }
            .interactive-section {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
        }
        @media (max-width: 576px) {
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
            article {
                padding: 1.5rem;
            }
        }
