:root {
            --primary-red: #d32f27;
            --primary-blue: #0066cc;
            --dark-bg: #0f1419;
            --light-bg: #f5f5f5;
            --text-dark: #222;
            --text-light: #eaeaea;
            --accent-yellow: #ffcc00;
            --spider-web: rgba(255,255,255,0.05);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--dark-bg);
            color: var(--text-light);
            background-image:
                radial-gradient(circle at 15% 50%, rgba(211, 47, 39, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 85% 30%, rgba(0, 102, 204, 0.1) 0%, transparent 20%),
                linear-gradient(to right, var(--spider-web) 1px, transparent 1px),
                linear-gradient(to bottom, var(--spider-web) 1px, transparent 1px);
            background-size: 100% 100%, 100% 100%, 50px 50px, 50px 50px;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: var(--accent-yellow);
            text-decoration: none;
            transition: color 0.3s, transform 0.2s;
        }
        a:hover {
            color: var(--primary-red);
            transform: translateY(-2px);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, rgba(15,20,29,0.95) 0%, rgba(35,40,49,0.95) 100%);
            backdrop-filter: blur(10px);
            border-bottom: 3px solid var(--primary-red);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(90deg, var(--primary-red), var(--primary-blue));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        .logo a {
            background: none;
        }
        .nav-container {
            display: flex;
            align-items: center;
        }
        .main-nav {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .main-nav a {
            color: var(--text-light);
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .main-nav a:hover {
            background-color: rgba(211, 47, 39, 0.2);
            color: var(--primary-red);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--text-light);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
            border-bottom: 1px solid #333;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: var(--accent-yellow);
        }
        .search-bar {
            margin: 25px 0;
            padding: 20px;
            background: rgba(30, 35, 44, 0.8);
            border-radius: 10px;
            border-left: 5px solid var(--primary-blue);
        }
        .search-form {
            display: flex;
            max-width: 600px;
        }
        .search-input {
            flex-grow: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 8px 0 0 8px;
            background: rgba(255,255,255,0.1);
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-input::placeholder {
            color: #bbb;
        }
        .search-btn {
            padding: 0 25px;
            background: linear-gradient(135deg, var(--primary-blue), #004d99);
            color: white;
            border: none;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }
        .search-btn:hover {
            background: linear-gradient(135deg, var(--primary-red), #a81c15);
        }
        .main-content {
            flex: 1;
            padding: 30px 0;
        }
        .article-header {
            margin-bottom: 40px;
            text-align: center;
            padding: 30px;
            background: linear-gradient(rgba(15,20,29,0.8), rgba(15,20,29,0.9)), url('https://images.unsplash.com/photo-1635805737707-575885ab0820?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            border-radius: 15px;
            border: 2px solid var(--primary-red);
        }
        .article-header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            color: var(--text-light);
            text-shadow: 0 2px 10px rgba(0,0,0,0.7);
        }
        .meta-info {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            color: #bbb;
            font-size: 0.95rem;
            margin-top: 20px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-body {
            background: rgba(25, 30, 39, 0.8);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        .article-body h2 {
            color: var(--primary-red);
            font-size: 2rem;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #333;
        }
        .article-body h3 {
            color: var(--accent-yellow);
            font-size: 1.6rem;
            margin: 30px 0 15px;
        }
        .article-body p {
            margin-bottom: 25px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .article-body strong {
            color: var(--accent-yellow);
            font-weight: 700;
        }
        .article-body em {
            color: #ff9999;
            font-style: italic;
        }
        .highlight-box {
            background: rgba(0, 102, 204, 0.15);
            border-left: 5px solid var(--primary-blue);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .game-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 10px;
            border: 3px solid var(--primary-red);
            margin: 30px auto;
            display: block;
            box-shadow: 0 5px 20px rgba(0,0,0,0.5);
            transition: transform 0.5s;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .content-link {
            background: rgba(255, 204, 0, 0.1);
            padding: 15px;
            border-radius: 8px;
            margin: 20px 0;
            border: 1px dashed var(--accent-yellow);
        }
        .sidebar {
            background: rgba(25, 30, 39, 0.8);
            padding: 25px;
            border-radius: 15px;
            align-self: start;
            position: sticky;
            top: 140px;
        }
        .sidebar-widget {
            margin-bottom: 35px;
        }
        .sidebar-widget h3 {
            color: var(--primary-blue);
            font-size: 1.4rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #444;
        }
        .widget-links {
            list-style: none;
        }
        .widget-links li {
            margin-bottom: 12px;
            padding-left: 15px;
            position: relative;
        }
        .widget-links li:before {
            content: '🕷️';
            position: absolute;
            left: -5px;
        }
        .user-interaction {
            background: rgba(35, 40, 49, 0.9);
            padding: 40px;
            border-radius: 15px;
            margin-top: 50px;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .rating-widget, .comment-widget {
            background: rgba(20, 25, 34, 0.8);
            padding: 25px;
            border-radius: 10px;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .star {
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: var(--accent-yellow);
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #bbb;
        }
        .form-control {
            width: 100%;
            padding: 15px;
            background: rgba(255,255,255,0.1);
            border: 1px solid #444;
            border-radius: 8px;
            color: var(--text-light);
            font-size: 1rem;
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(135deg, var(--primary-red), #a81c15);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: background 0.3s;
        }
        .submit-btn:hover {
            background: linear-gradient(135deg, var(--primary-blue), #004d99);
        }
        .footer-links {
            background: rgba(20, 25, 34, 0.95);
            padding: 40px 0;
            margin-top: 50px;
            border-top: 3px solid var(--primary-blue);
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            padding: 15px;
            border-radius: 8px;
            transition: background 0.3s;
        }
        .web-link:hover {
            background: rgba(211, 47, 39, 0.2);
        }
        .web-link a {
            color: #ddd;
            display: block;
        }
        .site-footer {
            background: rgba(10, 15, 24, 0.98);
            padding: 40px 0 20px;
            text-align: center;
            border-top: 1px solid #333;
        }
        .copyright {
            color: #888;
            font-size: 0.9rem;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #333;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(15,20,29,0.98);
                padding: 20px;
                border-top: 2px solid var(--primary-red);
                z-index: 999;
            }
            .main-nav.active {
                display: flex;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            .content-grid {
                gap: 25px;
            }
            .article-body, .sidebar {
                padding: 25px;
            }
            .meta-info {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .article-body, .sidebar, .user-interaction {
            animation: fadeIn 0.8s ease-out;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
