:root {
            --primary-red: #d32f2f;
            --secondary-blue: #1a237e;
            --accent-yellow: #ffd600;
            --dark-bg: #111111;
            --light-text: #f5f5f5;
            --gray-text: #bdbdbd;
            --section-padding: 2rem 1rem;
            --max-content-width: 1200px;
            --border-radius: 8px;
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            line-height: 1.6;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            background-color: var(--dark-bg);
            color: var(--light-text);
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: var(--accent-yellow);
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary-red);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--border-radius);
        }
        .container {
            width: 100%;
            max-width: var(--max-content-width);
            margin: 0 auto;
            padding: 0 1rem;
        }
        .site-header {
            background: linear-gradient(to bottom, #000000 0%, var(--dark-bg) 100%);
            padding: 1rem 0;
            border-bottom: 3px solid var(--primary-red);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-family: 'Arial Black', sans-serif;
            font-size: 1.8rem;
            color: var(--primary-red);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(211, 47, 47, 0.5);
        }
        .logo span {
            color: var(--light-text);
        }
        .breadcrumb {
            padding: 0.5rem 1rem;
            background-color: rgba(0, 0, 0, 0.3);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        .breadcrumb a {
            color: var(--gray-text);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            color: var(--light-text);
            font-weight: 600;
            padding: 0.5rem;
        }
        .nav-desktop a:hover {
            background-color: rgba(211, 47, 47, 0.2);
            border-radius: var(--border-radius);
        }
        .hamburger-btn {
            display: none;
            background: none;
            border: none;
            color: var(--light-text);
            font-size: 1.5rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: var(--dark-bg);
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 1rem;
            border-top: 1px solid var(--primary-red);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: var(--light-text);
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .search-section {
            background-color: rgba(26, 35, 126, 0.2);
            padding: var(--section-padding);
            text-align: center;
        }
        .search-box {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
        }
        .search-box input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: 2px solid var(--secondary-blue);
            border-right: none;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--light-text);
        }
        .search-box button {
            background-color: var(--primary-red);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            font-weight: bold;
        }
        .main-article {
            background-color: rgba(30, 30, 30, 0.95);
            padding: 2rem;
            border-radius: var(--border-radius);
            margin: 2rem auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 1.5rem;
            border-bottom: 2px dashed var(--primary-red);
        }
        .article-header h1 {
            color: var(--accent-yellow);
            font-size: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .article-meta {
            color: var(--gray-text);
            font-style: italic;
        }
        .content-section {
            margin-bottom: 3rem;
        }
        h2 {
            color: var(--primary-red);
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--secondary-blue);
            font-size: 1.8rem;
        }
        h3 {
            color: var(--accent-yellow);
            margin: 1.5rem 0 1rem;
            font-size: 1.4rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
            line-height: 1.8;
        }
        .highlight {
            background-color: rgba(255, 214, 0, 0.1);
            border-left: 4px solid var(--accent-yellow);
            padding: 1rem;
            margin: 1.5rem 0;
            font-style: italic;
        }
        .image-with-caption {
            margin: 2rem auto;
            max-width: 800px;
        }
        .image-caption {
            text-align: center;
            font-size: 0.9rem;
            color: var(--gray-text);
            margin-top: 0.5rem;
        }
        .user-interaction {
            background-color: rgba(26, 35, 126, 0.1);
            padding: 2rem;
            border-radius: var(--border-radius);
            margin: 3rem 0;
            border: 1px solid var(--secondary-blue);
        }
        .rating-section {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 2rem;
        }
        .rating-form, .comment-form {
            flex: 1;
            min-width: 300px;
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 0.5rem 0 1rem;
        }
        .star {
            color: var(--gray-text);
            cursor: pointer;
            font-size: 1.5rem;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: var(--accent-yellow);
        }
        form input, form textarea {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--secondary-blue);
            border-radius: var(--border-radius);
            color: var(--light-text);
        }
        form button {
            background-color: var(--primary-red);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: var(--border-radius);
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        form button:hover {
            background-color: #b71c1c;
            transform: translateY(-2px);
        }
        .longtail-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
            margin: 3rem 0;
            padding: 2rem;
            background-color: rgba(0, 0, 0, 0.4);
            border-radius: var(--border-radius);
        }
        .web-link {
            background-color: rgba(26, 35, 126, 0.3);
            padding: 0.8rem;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(211, 47, 47, 0.3);
            transform: translateX(5px);
        }
        .web-link a {
            color: var(--light-text);
            display: block;
        }
        .site-footer {
            background-color: #000;
            padding: 2rem 1rem;
            text-align: center;
            border-top: 3px solid var(--primary-red);
            margin-top: 3rem;
        }
        .copyright {
            color: var(--gray-text);
            font-size: 0.9rem;
            margin-top: 1rem;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-wrap: wrap;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger-btn {
                display: block;
            }
            .article-header h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .main-article {
                padding: 1rem;
            }
            .rating-section {
                flex-direction: column;
            }
        }
        @media (min-width: 769px) {
            .mobile-nav {
                display: none !important;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .content-section {
            animation: fadeIn 0.5s ease forwards;
        }
