* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Tahoma', sans-serif;
        }
        body {
            background-color: #f0f4f8;
            color: #2d3436;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #0984e3, #6c5ce7);
            padding: 18px 20px;
            color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #ffeaa7;
            text-decoration: none;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
            margin-bottom: 10px;
        }
        .nav-links {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1.15rem;
            transition: color 0.3s;
            padding: 5px 0;
        }
        .nav-links a:hover {
            color: #ffeaa7;
        }
        .mobile-nav-btn {
            display: none;
            background: none;
            border: 2px solid white;
            color: white;
            font-size: 1.6rem;
            cursor: pointer;
            padding: 5px 12px;
            border-radius: 5px;
        }
        #mobileNav {
            display: none;
            width: 100%;
            margin-top: 15px;
            border-top: 1px solid rgba(255,255,255,0.2);
            padding-top: 10px;
        }
        #mobileNav a {
            display: block;
            color: white;
            text-decoration: none;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        #mobileNav a:last-child {
            border-bottom: none;
        }
        main {
            max-width: 1200px;
            margin: 35px auto;
            padding: 0 20px;
        }
        h1 {
            color: #2d3436;
            font-size: 2.8rem;
            margin-bottom: 25px;
            text-align: center;
            text-shadow: 0 1px 3px rgba(0,0,0,0.1);
            line-height: 1.3;
        }
        h2 {
            color: #0984e3;
            font-size: 2.1rem;
            margin: 40px 0 20px;
            border-bottom: 3px solid #ffeaa7;
            padding-bottom: 10px;
            line-height: 1.4;
        }
        h3 {
            color: #6c5ce7;
            font-size: 1.6rem;
            margin: 30px 0 15px;
            line-height: 1.4;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #2d3436;
        }
        .highlight {
            font-weight: bold;
            color: #d63031;
            text-decoration: underline;
            text-underline-offset: 4px;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #00b894;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            margin: 15px 12px 15px 0;
            transition: all 0.3s;
            font-size: 1.1rem;
            box-shadow: 0 4px 6px rgba(0,184,148,0.3);
        }
        .btn:hover {
            background-color: #009670;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0,184,148,0.4);
        }
        .btn-login {
            background-color: #e67e22;
            box-shadow: 0 4px 6px rgba(230,126,34,0.3);
        }
        .btn-login:hover {
            background-color: #d35400;
            box-shadow: 0 6px 8px rgba(230,126,34,0.4);
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            transition: transform 0.3s;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border-left: 5px solid #6c5ce7;
        }
        .review {
            background-color: white;
            border-left: 5px solid #ffeaa7;
            padding: 20px;
            margin: 20px 0;
            border-radius: 6px;
            box-shadow: 0 3px 8px rgba(0,0,0,0.08);
        }
        .tag {
            display: inline-block;
            background-color: #dfe6e9;
            padding: 6px 15px;
            border-radius: 25px;
            margin: 8px 6px;
            text-decoration: none;
            color: #2d3436;
            font-size: 0.95rem;
            transition: all 0.3s;
        }
        .tag:hover {
            background-color: #b2bec3;
            transform: translateY(-2px);
        }
        .game-type {
            display: inline-block;
            margin: 12px 8px;
            text-decoration: none;
            color: #0984e3;
            font-weight: bold;
            font-size: 1.05rem;
            transition: color 0.3s;
        }
        .game-type:hover {
            color: #6c5ce7;
            text-decoration: underline;
        }
        footer {
            background-color: #2d3436;
            color: white;
            padding: 40px 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: #ffeaa7;
            font-size: 1.4rem;
            margin-bottom: 15px;
            border-bottom: 2px solid #6c5ce7;
            padding-bottom: 8px;
            display: inline-block;
        }
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 25px;
            border-top: 1px solid #636e72;
            font-size: 0.95rem;
            color: #b2bec3;
        }
        .emoji {
            margin-right: 8px;
            font-size: 1.2em;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .mobile-nav-btn {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
                margin: 30px 0 15px;
            }
            h3 {
                font-size: 1.4rem;
                margin: 25px 0 12px;
            }
            p {
                font-size: 1.05rem;
                margin-bottom: 18px;
            }
            .btn {
                display: block;
                width: 100%;
                text-align: center;
                margin: 10px 0;
                padding: 12px 0;
            }
            .stats-box {
                padding: 20px;
            }
            .review {
                padding: 15px;
            }
        }
