* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #2d3436;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #0984e3, #6c5ce7);
            color: white;
            padding: 15px 0;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .container {
            width: 94%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            color: white;
            display: inline-block;
            margin-right: 25px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
            letter-spacing: 0.5px;
        }
        nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 5px 0;
            position: relative;
        }
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #fdcb6e;
            transition: width 0.3s ease;
        }
        .nav-links a:hover:after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px 10px;
        }
        h1 {
            color: #0984e3;
            margin: 40px 0 30px;
            font-size: 2.5rem;
            text-align: center;
            text-shadow: 0 1px 3px rgba(0,0,0,0.1);
            line-height: 1.3;
        }
        h2 {
            color: #0984e3;
            margin: 50px 0 25px;
            font-size: 1.8rem;
            border-bottom: 3px solid #fdcb6e;
            padding-bottom: 10px;
            position: relative;
            padding-left: 10px;
        }
        h2:before {
            content: '⚡';
            position: absolute;
            left: -25px;
        }
        h3 {
            color: #6c5ce7;
            margin: 35px 0 20px;
            font-size: 1.4rem;
            background-color: #f1f5f8;
            padding: 10px 15px;
            border-radius: 5px;
            display: inline-block;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.05rem;
            text-align: justify;
        }
        strong {
            color: #0984e3;
        }
        .btn-container {
            text-align: center;
            margin: 50px 0 60px;
        }
        .btn {
            display: inline-block;
            padding: 15px 35px;
            margin: 0 15px 15px;
            background-color: #0984e3;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background-color: #0652dd;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
        }
        .btn-login {
            background-color: #6c5ce7;
        }
        .btn-login:hover {
            background-color: #553d67;
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border: 6px solid white;
        }
        .image-caption {
            font-size: 0.95rem;
            color: #636e72;
            margin-top: 15px;
            font-style: italic;
            text-align: center;
            line-height: 1.6;
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 6px 20px rgba(0,0,0,0.09);
            border-left: 5px solid #fdcb6e;
        }
        .stat-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px dashed #f1f1f1;
        }
        .stat-item:last-child {
            border-bottom: none;
        }
        .review-container {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 35px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            position: relative;
        }
        .review-container:before {
            content: '"';
            font-size: 5rem;
            color: #f1f5f8;
            position: absolute;
            top: -15px;
            left: 20px;
            font-family: Georgia, serif;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        .reviewer {
            font-weight: bold;
            color: #2d3436;
            font-size: 1.1rem;
        }
        .rating {
            color: #fdcb6e;
            font-size: 1.2rem;
        }
        .tag-container {
            margin: 50px 0;
        }
        .tag {
            display: inline-block;
            background-color: #f1f5f8;
            color: #2d3436;
            padding: 10px 20px;
            border-radius: 25px;
            margin: 0 10px 15px 0;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            border: 1px solid #e1e8ed;
        }
        .tag:hover {
            background-color: #e6f0ff;
            transform: translateY(-2px);
            border-color: #b8daff;
        }
        .game-type {
            display: inline-block;
            color: #2d3436;
            text-decoration: none;
            margin-right: 20px;
            font-weight: 500;
            padding: 5px 0;
            position: relative;
        }
        .game-type:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #6c5ce7;
            transition: width 0.3s ease;
        }
        .game-type:hover:after {
            width: 100%;
        }
        footer {
            background-color: #2d3436;
            color: white;
            padding: 60px 0 30px;
            margin-top: 80px;
        }
        .footer-section {
            margin-bottom: 50px;
        }
        .footer-heading {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: #fdcb6e;
            border-bottom: 2px solid #fdcb6e;
            padding-bottom: 10px;
            display: inline-block;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .copyright {
            text-align: center;
            padding-top: 35px;
            border-top: 1px solid #4a4a4a;
            margin-top: 35px;
            font-size: 0.95rem;
            color: #b2bec3;
        }
        .tips-box {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            border-left: 4px solid #6c5ce7;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .tips-box h4 {
            color: #6c5ce7;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        .regional-badge {
            display: inline-block;
            background-color: #e8f4fd;
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 0.9rem;
            color: #0984e3;
            margin-right: 10px;
            margin-bottom: 10px;
            border: 1px solid #d6eaff;
        }
        .achievement {
            display: flex;
            align-items: center;
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 15px;
            border-left: 3px solid #0984e3;
        }
        .achievement-icon {
            font-size: 1.8rem;
            margin-right: 15px;
            color: #fdcb6e;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 75px;
                left: 0;
                right: 0;
                background-color: #0984e3;
                padding: 30px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 15px 0;
                padding: 8px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .nav-links li:last-child {
                border-bottom: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.1rem;
                margin: 30px 0 20px;
                padding: 0 10px;
            }
            h2 {
                font-size: 1.6rem;
                margin: 40px 0 20px;
                padding-left: 5px;
            }
            h2:before {
                left: -18px;
                font-size: 0.9rem;
            }
            h3 {
                font-size: 1.3rem;
                padding: 8px 12px;
                display: block;
            }
            p {
                font-size: 1.05rem;
                margin-bottom: 22px;
                line-height: 1.8;
            }
            .btn {
                display: block;
                width: 90%;
                margin: 15px auto;
                padding: 14px 20px;
            }
            .stat-item {
                flex-direction: column;
                margin-bottom: 18px;
                padding-bottom: 18px;
            }
            .stat-item span:last-child {
                margin-top: 8px;
                font-weight: bold;
                color: #0984e3;
            }
            .review-container {
                padding: 25px 20px;
            }
            .review-container:before {
                font-size: 3.5rem;
                top: 10px;
            }
            .image-container {
                margin: 30px 0;
            }
            .tips-box {
                padding: 20px;
            }
        }
