* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #1a1a2e;
            --secondary-dark: #16213e;
            --accent-red: #e94560;
            --accent-gold: #ffd700;
            --text-light: #f0f0f0;
            --text-gray: #b8b8b8;
            --section-bg: #0f3460;
        }
        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 ease;
        }
        a:hover {
            color: var(--accent-red);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--secondary-dark);
            padding: 1rem 0;
            border-bottom: 3px solid var(--accent-red);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--accent-gold);
            text-shadow: 0 0 5px var(--accent-red);
        }
        .logo span {
            color: var(--accent-red);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .desktop-nav a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--accent-red);
            left: 0;
            bottom: 0;
            transition: width 0.3s;
        }
        .desktop-nav a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent-gold);
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--secondary-dark);
            padding: 1rem;
            flex-direction: column;
            border-top: 1px solid var(--accent-red);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin: 1rem 0;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: rgba(15, 52, 96, 0.3);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--text-gray);
        }
        .breadcrumb span {
            color: var(--accent-gold);
            margin: 0 0.5rem;
        }
        main {
            padding: 2rem 0;
            background: linear-gradient(to bottom, var(--primary-dark), var(--section-bg));
        }
        article {
            background-color: rgba(22, 33, 62, 0.7);
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            margin-bottom: 2rem;
        }
        h1 {
            font-size: 2.5rem;
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-align: center;
        }
        h2 {
            font-size: 2rem;
            color: var(--accent-red);
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed var(--accent-gold);
        }
        h3 {
            font-size: 1.6rem;
            color: var(--text-light);
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--accent-gold);
            text-align: center;
            margin-bottom: 2.5rem;
        }
        .highlight {
            background-color: rgba(233, 69, 96, 0.2);
            border-left: 4px solid var(--accent-red);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 5px 5px 0;
        }
        .featured-image {
            width: 100%;
            max-width: 800px;
            margin: 2.5rem auto;
            display: block;
            border-radius: 10px;
            border: 3px solid var(--accent-gold);
            box-shadow: 0 5px 15px rgba(0,0,0,0.7);
        }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .search-box, .comment-box, .rating-box {
            background-color: var(--section-bg);
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid var(--accent-red);
        }
        .interactive-section h3 {
            margin-top: 0;
            color: var(--accent-gold);
        }
        .interactive-section form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.8rem;
            border-radius: 5px;
            border: 1px solid #444;
            background-color: #222;
            color: var(--text-light);
            font-size: 1rem;
        }
        button {
            background-color: var(--accent-red);
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
            font-size: 1.1rem;
        }
        button:hover {
            background-color: #c1121f;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 2rem;
            color: var(--text-gray);
        }
        .stars i {
            cursor: pointer;
            transition: color 0.2s;
        }
        .stars i:hover,
        .stars i.active {
            color: var(--accent-gold);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin: 3rem 0;
        }
        .web-link {
            background: linear-gradient(135deg, var(--section-bg), var(--primary-dark));
            padding: 1rem;
            border-radius: 5px;
            text-align: center;
            border: 1px solid var(--accent-red);
            transition: transform 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
        }
        footer {
            background-color: var(--secondary-dark);
            padding: 3rem 0 1.5rem;
            border-top: 3px solid var(--accent-red);
            text-align: center;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .copyright {
            margin-top: 2rem;
            color: var(--text-gray);
            font-size: 0.9rem;
            border-top: 1px solid #444;
            padding-top: 1.5rem;
            width: 100%;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            article {
                padding: 1.5rem;
            }
            .interactive-section {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            h1 {
                font-size: 1.7rem;
            }
            .logo a {
                font-size: 1.5rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, .interactive-section, .web-links {
            animation: fadeIn 1s ease-out;
        }
