        * { 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: #e0e0e0;
            background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 100%);
            background-attachment: fixed;
            min-height: 100vh;
        }
        a { color: #4dabf7; text-decoration: none; transition: all 0.3s ease; }
        a:hover { color: #a5d8ff; text-shadow: 0 0 8px rgba(77, 171, 247, 0.5); }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { color: #ffd43b; font-family: 'Arial Black', 'Arial Bold', Gadget, sans-serif; margin-bottom: 1rem; line-height: 1.2; }
        h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); text-align: center; margin-top: 2rem; }
        h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); border-left: 5px solid #ff6b6b; padding-left: 15px; margin-top: 3rem; }
        h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); color: #74c0fc; margin-top: 2rem; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; }
        .lead { font-size: 1.3rem; color: #b2f2bb; font-weight: 300; text-align: center; max-width: 800px; margin: 1rem auto 2.5rem; }
        .highlight { background-color: rgba(255, 212, 59, 0.15); padding: 0.2em 0.5em; border-radius: 4px; font-weight: bold; }
        blockquote { border-left: 4px solid #4dabf7; padding-left: 1.5rem; margin: 2rem 0; font-style: italic; color: #adb5bd; background-color: rgba(255,255,255,0.03); padding: 1.5rem; border-radius: 0 8px 8px 0; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        main.container { padding-top: 2rem; padding-bottom: 4rem; }
        .site-header {
            background-color: rgba(10, 10, 26, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #33334d;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ffd43b, #ff6b6b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .desktop-nav { display: flex; gap: 2rem; }
        .desktop-nav a { font-weight: 600; padding: 0.5rem; }
        .hamburger { display: none; font-size: 1.8rem; color: #ffd43b; cursor: pointer; background: none; border: none; }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #0a0a1a;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            border-top: 1px solid #33334d;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .mobile-nav.active { display: flex; }
        .mobile-nav a { padding: 1rem; border-bottom: 1px solid #222; }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #adb5bd;
        }
        .breadcrumb a { color: #74c0fc; }
        .search-module {
            background: rgba(26, 26, 46, 0.8);
            border: 1px solid #444;
            border-radius: 50px;
            padding: 1.5rem;
            margin: 2.5rem auto;
            max-width: 700px;
            text-align: center;
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex-grow: 1;
            padding: 15px 20px;
            border: 2px solid #4dabf7;
            border-radius: 30px;
            background: #0a0a1a;
            color: white;
            font-size: 1rem;
        }
        .search-btn {
            padding: 15px 30px;
            background: linear-gradient(90deg, #4dabf7, #228be6);
            color: white;
            border: none;
            border-radius: 30px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .search-btn:hover { transform: scale(1.05); }
        .article-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-top: 2rem;
        }
        @media (max-width: 992px) {
            .article-content { grid-template-columns: 1fr; }
        }
        .content-main {
            background: rgba(26, 26, 46, 0.6);
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        .content-sidebar {
            background: rgba(26, 26, 46, 0.6);
            border-radius: 15px;
            padding: 2rem;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .game-card {
            background: rgba(10, 10, 26, 0.8);
            border-left: 5px solid #ffd43b;
            padding: 1.5rem;
            margin-bottom: 2rem;
            border-radius: 0 10px 10px 0;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .game-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 212, 59, 0.2);
        }
        .article-image {
            margin: 2.5rem auto;
            border-radius: 10px;
            overflow: hidden;
            border: 3px solid #33334d;
            max-width: 800px;
        }
        .article-image img { width: 100%; transition: transform 0.5s; }
        .article-image:hover img { transform: scale(1.03); }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #adb5bd;
            padding: 0.5rem;
            background: rgba(0,0,0,0.3);
        }
        .interactive-module {
            background: rgba(10, 10, 26, 0.9);
            border-radius: 15px;
            padding: 2rem;
            margin: 3rem 0;
            border: 1px solid #444;
        }
        .module-title { text-align: center; margin-bottom: 1.5rem; color: #ffa94d; }
        .rating-stars { display: flex; justify-content: center; gap: 10px; margin: 1.5rem 0; }
        .rating-star { font-size: 2rem; color: #444; cursor: pointer; transition: color 0.2s; }
        .rating-star:hover,
        .rating-star.active { color: #ffd43b; }
        .form-group { margin-bottom: 1.5rem; }
        .form-label { display: block; margin-bottom: 0.5rem; color: #74c0fc; }
        .form-input, .form-textarea {
            width: 100%;
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #555;
            background: #0a0a1a;
            color: white;
            font-family: inherit;
            font-size: 1rem;
        }
        .form-textarea { min-height: 120px; resize: vertical; }
        .submit-btn {
            display: block;
            width: 100%;
            padding: 15px;
            background: linear-gradient(90deg, #40c057, #2b8a3e);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .submit-btn:hover { background: linear-gradient(90deg, #51cf66, #37b24d); }
        .footer-links {
            background: rgba(10, 10, 26, 0.95);
            border-top: 2px solid #33334d;
            padding: 3rem 0;
            margin-top: 4rem;
        }
        .web-link-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        .web-link {
            background: rgba(26, 26, 46, 0.8);
            padding: 1.2rem;
            border-radius: 8px;
            transition: all 0.3s;
        }
        .web-link:hover { background: rgba(77, 171, 247, 0.15); transform: translateX(5px); }
        .web-link a { color: #b2f2bb; font-weight: 600; }
        .site-footer {
            background-color: #050510;
            color: #adb5bd;
            text-align: center;
            padding: 2rem 0;
            font-size: 0.9rem;
            border-top: 1px solid #33334d;
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .header-container { padding: 0 20px; }
            .content-main, .content-sidebar, .interactive-module { padding: 1.5rem; }
            .search-form { flex-direction: column; }
            .search-input, .search-btn { width: 100%; border-radius: 8px; }
            h2 { font-size: 1.6rem; }
        }
        .emoji-bullet::before { content: "⚔️"; margin-right: 10px; }
        .force-icon::after { content: " ⚡"; color: #ffd43b; }
        .info-note {
            background: rgba(32, 201, 151, 0.1);
            border-left: 5px solid #20c997;
            padding: 1rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
