:root {
            --primary-red: #e62429;
            --primary-blue: #006cbe;
            --dark-bg: #111111;
            --light-text: #f5f5f5;
            --accent-yellow: #ffd100;
            --gray-border: #333333;
            --content-width: 1200px;
        }
        * {
            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.7;
            color: var(--light-text);
            background-color: var(--dark-bg);
            overflow-x: hidden;
        }
        a {
            color: var(--accent-yellow);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: var(--primary-red);
        }
        .container {
            width: 100%;
            max-width: var(--content-width);
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(to bottom, #000 80%, rgba(0,0,0,0.8));
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 3px solid var(--primary-red);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-family: 'Arial Black', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, var(--primary-red), var(--primary-blue));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: -1px;
        }
        .logo span {
            color: var(--accent-yellow);
        }
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
        }
        .desktop-nav a {
            color: var(--light-text);
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .desktop-nav a:hover {
            background-color: rgba(230, 36, 41, 0.2);
        }
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--light-text);
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .mobile-nav-toggle {
                display: block;
            }
        }
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.95);
            padding: 2rem;
            transition: right 0.4s ease;
            z-index: 1001;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            border-left: 3px solid var(--primary-red);
        }
        .mobile-nav.active {
            right: 0;
        }
        .mobile-nav a {
            color: var(--light-text);
            font-size: 1.2rem;
            padding: 0.8rem 0;
            border-bottom: 1px solid var(--gray-border);
        }
        .close-menu {
            align-self: flex-end;
            background: none;
            border: none;
            color: var(--light-text);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
            border-bottom: 1px solid var(--gray-border);
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: var(--accent-yellow);
        }
        main {
            padding: 2rem 0;
        }
        article {
            background-color: rgba(30, 30, 30, 0.7);
            border-radius: 10px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        h1 {
            font-size: 2.8rem;
            color: var(--accent-yellow);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 5px solid var(--primary-red);
            padding-left: 1rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
        }
        h2 {
            font-size: 2rem;
            color: var(--primary-blue);
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed var(--gray-border);
        }
        h3 {
            font-size: 1.5rem;
            color: var(--primary-red);
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 600;
            color: #ddd;
            background-color: rgba(0, 108, 190, 0.1);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid var(--primary-blue);
        }
        .highlight {
            background-color: rgba(255, 209, 0, 0.15);
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid rgba(255, 209, 0, 0.3);
            margin: 2rem 0;
        }
        .image-container {
            margin: 2.5rem auto;
            text-align: center;
            max-width: 800px;
        }
        .article-img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            border: 3px solid var(--gray-border);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
        }
        .img-caption {
            font-style: italic;
            color: #aaa;
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .internal-links {
            background-color: rgba(51, 51, 51, 0.5);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        .internal-links h3 {
            margin-top: 0;
        }
        .internal-links ul {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            list-style-type: none;
        }
        .internal-links li {
            padding: 0.5rem 0;
        }
        .internal-links li:before {
            content: "🕷️";
            margin-right: 0.5rem;
        }
        .search-section {
            background-color: rgba(17, 17, 17, 0.9);
            padding: 2rem;
            border-radius: 10px;
            margin-bottom: 2rem;
            border: 2px solid var(--primary-blue);
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem;
            border: 2px solid var(--primary-red);
            border-right: none;
            border-radius: 5px 0 0 5px;
            background-color: #222;
            color: var(--light-text);
            font-size: 1rem;
        }
        .search-btn {
            background-color: var(--primary-red);
            color: white;
            border: none;
            padding: 1rem 1.5rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .search-btn:hover {
            background-color: #c51f24;
        }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .rating-box, .comment-box {
            background-color: rgba(30, 30, 30, 0.9);
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid var(--gray-border);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .star {
            color: #555;
            font-size: 2rem;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star.active {
            color: var(--accent-yellow);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .form-input, .form-textarea {
            padding: 0.8rem;
            background-color: #222;
            border: 1px solid #444;
            border-radius: 5px;
            color: var(--light-text);
            font-family: inherit;
        }
        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background-color: var(--primary-blue);
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .submit-btn:hover {
            background-color: #005a9c;
        }
        .footer-links {
            background-color: #000;
            padding: 3rem 0;
            margin-top: 3rem;
            border-top: 3px solid var(--primary-red);
        }
        .web-link {
            display: inline-block;
            background-color: #1a1a1a;
            padding: 0.8rem 1.5rem;
            margin: 0.5rem;
            border-radius: 30px;
            border: 1px solid #333;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background-color: var(--primary-red);
            transform: translateY(-3px);
        }
        .copyright {
            text-align: center;
            padding: 2rem 0;
            color: #777;
            font-size: 0.9rem;
            border-top: 1px solid #333;
            margin-top: 2rem;
        }
        .text-center {
            text-align: center;
        }
        .mb-3 { margin-bottom: 3rem; }
        .mt-3 { margin-top: 3rem; }
        .bold { font-weight: 700; color: #fff; }
        .emoji-large { font-size: 1.5em; }
