*,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --space-black: #0a0a0f;
            --space-dark: #12121a;
            --space-gray: #1e1e2e;
            --light-blue: #4dd0ff;
            --light-red: #ff4444;
            --light-yellow: #ffd700;
            --text-primary: #e8e8f0;
            --text-secondary: #a0a0b0;
            --text-muted: #6a6a7a;
            --card-bg: #181825;
            --border-glow: 0 0 15px rgba(77, 208, 255, 0.2);
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background: var(--space-black);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--light-blue);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: var(--light-yellow);
            text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
        }
        .site-header {
            background: linear-gradient(135deg, #0d0d18 0%, #1a1a2e 100%);
            border-bottom: 2px solid #2a2a3e;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        }
        .header-inner {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px;
        }
        .my-logo {
            font-family: 'Arial Black', 'Impact', sans-serif;
            font-size: 1.8rem;
            font-weight: 900;
            letter-spacing: 2px;
            background: linear-gradient(45deg, #4dd0ff, #ffd700, #4dd0ff);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: logoShift 4s ease infinite;
            transition: transform 0.3s;
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        @keyframes logoShift {
            0%,
            100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }
        .nav-links {
            display: flex;
            gap: 28px;
            list-style: none;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 0.95rem;
            padding: 8px 4px;
            position: relative;
            color: var(--text-primary);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--light-blue);
            transition: width 0.3s;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 5px;
        }
        .breadcrumb {
            max-width: 1300px;
            margin: 0 auto;
            padding: 10px 20px;
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:hover {
            color: var(--light-blue);
        }
        .breadcrumb .sep {
            margin: 0 6px;
            color: #444;
        }
        .breadcrumb .current {
            color: var(--text-secondary);
        }
        .main-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 30px 20px;
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
        }
        .content-article {
            min-width: 0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .side-card {
            background: var(--space-dark);
            border: 1px solid #252535;
            border-radius: 12px;
            padding: 24px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
        }
        .side-card h3 {
            font-size: 1.1rem;
            margin-bottom: 15px;
            color: var(--light-blue);
            border-left: 3px solid var(--light-blue);
            padding-left: 10px;
        }
        .side-card input[type="text"],
        .side-card input[type="email"],
        .side-card textarea,
        .side-card select {
            width: 100%;
            padding: 10px;
            border: 1px solid #333;
            border-radius: 8px;
            background: #1e1e2e;
            color: var(--text-primary);
            font-family: inherit;
            font-size: 0.9rem;
            margin-bottom: 12px;
        }
        .side-card button {
            width: 100%;
            padding: 10px;
            border: none;
            border-radius: 8px;
            background: linear-gradient(135deg, #4dd0ff, #2a6a8a);
            color: #fff;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        .side-card button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(77, 208, 255, 0.4);
        }
        .rating-stars {
            display: flex;
            gap: 4px;
            margin-bottom: 12px;
            justify-content: center;
        }
        .rating-stars i {
            color: var(--text-muted);
            cursor: pointer;
            font-size: 1.3rem;
            transition: color 0.2s;
        }
        .rating-stars i.active,
        .rating-stars i:hover {
            color: var(--light-yellow);
        }
        .content-article h1 {
            font-size: 2.4rem;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 15px;
            background: linear-gradient(135deg, #fff, #4dd0ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .content-article .meta-info {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid #252535;
        }
        .content-article h2 {
            font-size: 1.7rem;
            font-weight: 800;
            margin: 45px 0 20px;
            color: var(--light-blue);
            padding-bottom: 8px;
            border-bottom: 2px solid rgba(77, 208, 255, 0.3);
        }
        .content-article h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin: 30px 0 10px;
            color: var(--light-yellow);
        }
        .content-article h4 {
            font-size: 1.05rem;
            font-weight: 600;
            margin: 20px 0 8px;
            color: var(--text-primary);
        }
        .content-article p {
            margin-bottom: 16px;
            color: var(--text-secondary);
            line-height: 1.8;
        }
        .content-article strong {
            color: var(--text-primary);
        }
        .content-article .hero-img {
            width: 100%;
            height: auto;
            border-radius: 14px;
            margin: 25px 0;
            border: 2px solid #252535;
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
        }
        .content-article figure {
            margin: 25px 0;
        }
        .content-article figcaption {
            text-align: center;
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: 8px;
        }
        .content-article blockquote {
            border-left: 4px solid var(--light-blue);
            padding: 15px 20px;
            margin: 25px 0;
            background: rgba(77, 208, 255, 0.05);
            border-radius: 0 10px 10px 0;
            font-style: italic;
            color: var(--text-primary);
        }
        .content-article ul,
        .content-article ol {
            margin: 0 0 20px 25px;
            color: var(--text-secondary);
        }
        .content-article li {
            margin-bottom: 8px;
        }
        .game-card {
            background: var(--card-bg);
            border: 1px solid #252535;
            border-radius: 14px;
            padding: 25px;
            margin: 20px 0;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .game-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(77, 208, 255, 0.15);
        }
        .game-card .game-icon {
            font-size: 2rem;
            margin-bottom: 10px;
        }
        .game-card h3 {
            margin-top: 0;
        }
        .game-card .rating-badge {
            display: inline-block;
            background: rgba(255, 215, 0, 0.2);
            color: var(--light-yellow);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .game-card .info-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin: 15px 0;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 10px;
            padding: 15px;
        }
        .game-card .info-grid span {
            font-size: 0.85rem;
            text-align: center;
        }
        .game-card .info-grid .label {
            color: var(--text-muted);
            display: block;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .faq-item {
            background: var(--card-bg);
            border: 1px solid #252535;
            border-radius: 12px;
            padding: 20px;
            margin: 15px 0;
        }
        .faq-item summary {
            font-weight: 700;
            cursor: pointer;
            color: var(--text-primary);
            outline: none;
            list-style: none;
            position: relative;
            padding-right: 30px;
        }
        .faq-item summary::-webkit-details-marker {
            display: none;
        }
        .faq-item summary::after {
            content: '+';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
            color: var(--light-blue);
        }
        .faq-item[open] summary::after {
            content: '−';
        }
        .faq-item p {
            margin-top: 12px;
            color: var(--text-secondary);
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            border-radius: 10px;
            overflow: hidden;
        }
        .data-table th,
        .data-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #222;
        }
        .data-table th {
            background: #1a1a2e;
            color: var(--light-blue);
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .data-table tr {
            background: rgba(255, 255, 255, 0.02);
        }
        .site-footer {
            background: #0d0d18;
            border-top: 2px solid #2a2a3e;
            padding: 50px 20px 20px;
            margin-top: 60px;
        }
        .footer-inner {
            max-width: 1300px;
            margin: 0 auto;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }
        friend-link {
            display: block;
            font-weight: 700;
            color: var(--light-blue);
            margin-bottom: 10px;
        }
        .copyright {
            text-align: center;
            color: var(--text-muted);
            font-size: 0.85rem;
            border-top: 1px solid #1a1a2e;
            padding-top: 20px;
        }
        @media (max-width: 992px) {
            .main-container {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: -1;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: #12121a;
                flex-direction: column;
                padding: 20px;
                gap: 15px;
                border-bottom: 2px solid #252535;
            }
            .nav-links.open {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .header-inner {
                height: 60px;
            }
            .my-logo {
                font-size: 1.3rem;
            }
            .content-article h1 {
                font-size: 1.7rem;
            }
            .content-article h2 {
                font-size: 1.4rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .game-card .info-grid {
                grid-template-columns: 1fr;
            }
            .data-table {
                font-size: 0.8rem;
            }
        }
        @media (max-width: 480px) {
            .main-container {
                padding: 20px 12px;
            }
            .content-article h1 {
                font-size: 1.5rem;
            }
        }
