* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #cc0000;
            --secondary: #1a1a1a;
            --accent: #ffcc00;
            --light: #f5f5f5;
            --dark: #0a0a0a;
            --gray: #333;
        }
        body {
            background-color: var(--secondary);
            color: var(--light);
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: var(--primary);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(10, 10, 10, 0.95);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 3px solid var(--primary);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .logo a:hover {
            opacity: 0.9;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 5px;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--primary);
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .search-box {
            display: flex;
            background: var(--gray);
            border-radius: 30px;
            overflow: hidden;
            padding: 5px;
            margin-left: 20px;
        }
        .search-box input {
            background: transparent;
            border: none;
            padding: 10px 15px;
            color: var(--light);
            width: 200px;
        }
        .search-box button {
            background: var(--primary);
            border: none;
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #ff3333;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent);
        }
        .mobile-nav {
            display: none;
            background: var(--dark);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 2px solid var(--primary);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .breadcrumb {
            background: var(--gray);
            padding: 15px;
            margin: 20px 0;
            border-radius: 5px;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #ccc;
        }
        .breadcrumb .separator {
            margin: 0 10px;
            color: var(--primary);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            margin: 40px 0;
        }
        .article-content {
            background: rgba(30, 30, 30, 0.8);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .article-header h1 {
            font-size: 3.2rem;
            color: var(--accent);
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px #000;
        }
        .article-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            color: #aaa;
            font-size: 0.9rem;
            border-bottom: 1px solid #444;
            padding-bottom: 15px;
        }
        .featured-image {
            width: 100%;
            margin: 30px 0;
            text-align: center;
        }
        .featured-image img {
            max-width: 100%;
            height: auto;
            border: 5px solid var(--primary);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(204, 0, 0, 0.5);
        }
        .image-caption {
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
            font-size: 0.9rem;
        }
        h2 {
            color: var(--primary);
            font-size: 2.2rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #444;
        }
        h3 {
            color: var(--accent);
            font-size: 1.6rem;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(204, 0, 0, 0.1);
            border-left: 5px solid var(--primary);
            padding: 20px;
            margin: 25px 0;
            font-size: 1.1rem;
            line-height: 1.7;
        }
        .combo-box {
            background: var(--dark);
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
            border: 1px solid #555;
        }
        .combo-title {
            color: var(--accent);
            font-weight: bold;
            margin-bottom: 10px;
        }
        .combo {
            font-family: monospace;
            font-size: 1.3rem;
            color: #ff9900;
            letter-spacing: 2px;
        }
        .sidebar {
            background: rgba(30, 30, 30, 0.8);
            padding: 25px;
            border-radius: 10px;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar-title {
            color: var(--accent);
            font-size: 1.4rem;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid #444;
        }
        .rating-widget, .comment-widget {
            background: var(--gray);
            padding: 20px;
            border-radius: 8px;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 15px 0;
            font-size: 1.8rem;
            color: #555;
        }
        .stars .active {
            color: var(--accent);
        }
        .rating-form input, .comment-form textarea, .comment-form input {
            width: 100%;
            padding: 12px;
            margin: 10px 0;
            background: #222;
            border: 1px solid #555;
            border-radius: 5px;
            color: white;
        }
        .rating-form button, .comment-form button {
            width: 100%;
            padding: 12px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .rating-form button:hover, .comment-form button:hover {
            background: #ff3333;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 15px;
            background: var(--dark);
            padding: 30px;
            margin: 50px 0 30px;
            border-radius: 10px;
        }
        .web-link {
            background: var(--gray);
            padding: 15px;
            border-radius: 5px;
            text-align: center;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }
        .site-footer {
            background: var(--dark);
            padding: 40px 0 20px;
            border-top: 3px solid var(--primary);
            text-align: center;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
            margin-bottom: 30px;
        }
        .copyright {
            color: #aaa;
            font-size: 0.9rem;
            border-top: 1px solid #444;
            padding-top: 20px;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            .web-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .desktop-nav, .search-box {
                display: none;
            }
            .mobile-toggle {
                display: block;
            }
            .article-header h1 {
                font-size: 2.5rem;
            }
            .article-content {
                padding: 25px;
            }
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 576px) {
            .web-links {
                grid-template-columns: 1fr;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
        }
        .fade-in {
            animation: fadeIn 1s ease-in-out;
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        .pulse {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(204, 0, 0, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(204, 0, 0, 0); }
            100% { box-shadow: 0 0 0 0 rgba(204, 0, 0, 0); }
        }
