        * { 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: #f0f0f0;
            background: #0a0a14;
            background-image: radial-gradient(circle at 20% 30%, rgba(33, 10, 80, 0.3) 0%, transparent 20%),
                              radial-gradient(circle at 80% 70%, rgba(80, 10, 40, 0.2) 0%, transparent 20%);
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 15px;
        }
        a { color: #4dabf7; text-decoration: none; transition: all 0.3s ease; }
        a:hover { color: #74c0fc; text-shadow: 0 0 8px rgba(116, 192, 252, 0.5); }
        img { max-width: 100%; height: auto; display: block; }
        .site-header {
            padding: 1.5rem 0;
            border-bottom: 1px solid #2d2d4a;
            margin-bottom: 2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-family: 'Arial Black', sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(90deg, #ffd700, #ff6b00, #9d4edd);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo a:hover { text-shadow: 0 0 15px rgba(157, 78, 221, 0.7); }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
        }
        .main-nav a:hover {
            background: rgba(77, 171, 247, 0.1);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #ffd700;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            margin: 1rem 0 2.5rem;
            font-size: 0.95rem;
            color: #aaa;
        }
        .breadcrumb a { color: #ccc; }
        .breadcrumb a:hover { color: #ffd700; }
        .search-container {
            margin: 2rem auto;
            max-width: 600px;
        }
        .search-form {
            display: flex;
            border: 2px solid #444;
            border-radius: 50px;
            overflow: hidden;
            background: #1a1a2e;
        }
        .search-input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            background: transparent;
            color: #fff;
            font-size: 1rem;
        }
        .search-input::placeholder { color: #888; }
        .search-button {
            background: linear-gradient(90deg, #9d4edd, #560bad);
            color: white;
            border: none;
            padding: 0 25px;
            cursor: pointer;
            font-size: 1.1rem;
        }
        .search-button:hover { background: linear-gradient(90deg, #560bad, #3a0ca3); }
        .article-container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        @media (max-width: 1024px) {
            .article-container { grid-template-columns: 1fr; }
        }
        .main-article {
            background: rgba(20, 20, 35, 0.85);
            border-radius: 12px;
            padding: 2.5rem;
            border: 1px solid #33334d;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .article-title {
            font-size: 2.8rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: #ffd700;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
            border-left: 5px solid #9d4edd;
            padding-left: 20px;
        }
        .article-meta {
            color: #aaa;
            margin-bottom: 2rem;
            font-style: italic;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .article-meta i { color: #9d4edd; }
        h2 {
            font-size: 2rem;
            color: #74c0fc;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 8px;
            border-bottom: 2px dashed #444;
        }
        h3 {
            font-size: 1.6rem;
            color: #b197fc;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(255, 215, 0, 0.1);
            border-left: 4px solid #ffd700;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .game-card {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 1.5rem;
            background: rgba(30, 30, 50, 0.7);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
            border: 1px solid #444;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .game-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(157, 78, 221, 0.2);
        }
        .featured-img {
            margin: 2.5rem auto;
            border-radius: 10px;
            overflow: hidden;
            border: 3px solid #444;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
        }
        .featured-img figcaption {
            text-align: center;
            padding: 10px;
            font-style: italic;
            color: #aaa;
            background: #1a1a2e;
        }
        .sidebar {
            background: rgba(20, 20, 35, 0.85);
            border-radius: 12px;
            padding: 1.8rem;
            border: 1px solid #33334d;
            align-self: start;
            position: sticky;
            top: 20px;
        }
        .sidebar h3 {
            color: #ffd700;
            margin-top: 0;
            border-bottom: 1px solid #444;
            padding-bottom: 10px;
        }
        .sidebar ul {
            list-style: none;
            margin: 1.5rem 0;
        }
        .sidebar li {
            margin-bottom: 1rem;
            padding-left: 1.2rem;
            position: relative;
        }
        .sidebar li:before {
            content: '▸';
            color: #9d4edd;
            position: absolute;
            left: 0;
        }
        .rating-widget, .comment-widget {
            background: rgba(30, 30, 50, 0.7);
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
            border: 1px solid #444;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #555;
        }
        .rating-stars .star {
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #ffd700;
        }
        .interactive-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        .interactive-form input,
        .interactive-form textarea,
        .interactive-form select {
            padding: 12px 15px;
            border-radius: 6px;
            border: 1px solid #555;
            background: #1a1a2e;
            color: #fff;
            font-size: 1rem;
        }
        .interactive-form textarea { min-height: 120px; resize: vertical; }
        .submit-btn {
            background: linear-gradient(90deg, #00b4d8, #0077b6);
            color: white;
            border: none;
            padding: 14px;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .submit-btn:hover {
            background: linear-gradient(90deg, #0096c7, #005f8a);
            box-shadow: 0 0 15px rgba(0, 180, 216, 0.4);
        }
        .internal-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            margin: 3rem 0;
        }
        .internal-links a {
            background: rgba(77, 171, 247, 0.1);
            padding: 10px 20px;
            border-radius: 30px;
            border: 1px solid #4dabf7;
            font-size: 0.95rem;
        }
        .internal-links a:hover {
            background: rgba(77, 171, 247, 0.25);
            transform: scale(1.05);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
            padding: 2rem 0;
            border-top: 1px solid #2d2d4a;
            border-bottom: 1px solid #2d2d4a;
        }
        .web-link {
            background: rgba(40, 40, 60, 0.5);
            padding: 15px;
            border-radius: 8px;
            transition: background 0.3s;
        }
        .web-link:hover { background: rgba(60, 60, 90, 0.7); }
        .copyright {
            text-align: center;
            padding: 2rem 0;
            color: #888;
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav {
                display: none;
                width: 100%;
                order: 3;
                margin-top: 1rem;
            }
            .main-nav.active {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0.8rem;
            }
            .main-nav a {
                display: block;
                padding: 0.8rem;
                border: 1px solid #444;
                border-radius: 6px;
            }
            .article-title { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            .game-card { grid-template-columns: 1fr; }
            .sidebar { position: static; }
        }
