        * { 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: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 50%, #16213e 100%);
            background-attachment: fixed;
            min-height: 100vh;
        }
        a { color: #4dabf7; text-decoration: none; transition: color 0.3s ease, transform 0.2s ease; }
        a:hover { color: #a5d8ff; transform: translateY(-2px); }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .site-header {
            background: rgba(10, 10, 26, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #00a8ff;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-family: 'Arial Black', sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(90deg, #00a8ff, #9c88ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 5px rgba(0, 168, 255, 0.3);
        }
        .logo a:hover { color: transparent; transform: scale(1.05); }
        .nav-desktop ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        .nav-desktop a:hover {
            background: rgba(0, 168, 255, 0.15);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #00a8ff;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: rgba(10, 10, 26, 0.98);
            border-top: 1px solid #00a8ff;
            padding: 1rem;
            flex-direction: column;
            gap: 1rem;
        }
        .nav-mobile.active { display: flex; }
        .nav-mobile ul { list-style: none; }
        .nav-mobile li { margin: 1rem 0; }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a { color: #aaa; }
        .breadcrumb a:hover { color: #00a8ff; }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 768px) {
            .main-content { grid-template-columns: 1fr; }
        }
        article {
            background: rgba(30, 30, 46, 0.7);
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #333355;
        }
        h1 {
            font-size: 2.8rem;
            color: #00a8ff;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 0 10px rgba(0, 168, 255, 0.5);
        }
        h2 {
            font-size: 2rem;
            color: #9c88ff;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #444466;
        }
        h3 {
            font-size: 1.5rem;
            color: #4dabf7;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .intro {
            font-size: 1.2rem;
            background: rgba(0, 168, 255, 0.1);
            padding: 1.5rem;
            border-left: 5px solid #00a8ff;
            border-radius: 0 10px 10px 0;
            margin-bottom: 2.5rem;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(157, 136, 255, 0.2), transparent);
            padding: 1rem;
            border-radius: 10px;
            border-left: 4px solid #9c88ff;
            margin: 2rem 0;
        }
        .game-card {
            display: flex;
            gap: 2rem;
            background: rgba(40, 40, 60, 0.8);
            padding: 2rem;
            border-radius: 12px;
            margin: 2.5rem 0;
            border: 1px solid #555577;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .game-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
        }
        .game-img { flex: 0 0 250px; border-radius: 10px; overflow: hidden; }
        .game-info { flex: 1; }
        .rating {
            color: #ffd700;
            margin: 0.5rem 0;
        }
        .emoji { font-size: 1.3rem; margin-right: 0.5rem; }
        aside {
            background: rgba(30, 30, 46, 0.7);
            border-radius: 15px;
            padding: 2rem;
            height: fit-content;
            border: 1px solid #333355;
        }
        .search-box, .comment-form, .rating-form {
            margin-bottom: 2.5rem;
        }
        .search-box h3, .comment-form h3, .rating-form h3 {
            color: #00a8ff;
            margin-bottom: 1rem;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            background: rgba(50, 50, 70, 0.8);
            border: 1px solid #555577;
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
        }
        button {
            background: linear-gradient(90deg, #00a8ff, #9c88ff);
            color: white;
            border: none;
            padding: 0.9rem 1.8rem;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }
        button:hover {
            background: linear-gradient(90deg, #0097e6, #8c7ae6);
            transform: scale(1.03);
        }
        .footer-links {
            background: rgba(20, 20, 35, 0.9);
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .web-link-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        .web-link {
            background: rgba(40, 40, 60, 0.6);
            padding: 1.2rem;
            border-radius: 10px;
            border-left: 4px solid #00a8ff;
            transition: background 0.3s ease;
        }
        .web-link:hover { background: rgba(60, 60, 80, 0.8); }
        .site-footer {
            background: #0a0a1a;
            color: #aaa;
            padding: 2rem 0;
            text-align: center;
            border-top: 1px solid #333355;
        }
        .footer-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        @media (max-width: 768px) {
            .footer-inner { flex-direction: column; }
        }
        .social-links a {
            color: #aaa;
            font-size: 1.5rem;
            margin: 0 0.5rem;
        }
        .social-links a:hover { color: #00a8ff; }
        @media (max-width: 992px) {
            .game-card { flex-direction: column; }
            .game-img { flex: 0 0 auto; }
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            article, aside { padding: 1.5rem; }
        }
