* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Segoe UI', sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #2d3436;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background: linear-gradient(135deg, #2c3e50, #4a69bd);
            color: white;
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            position: relative;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: bold;
            text-align: center;
            margin: 10px 0 20px;
            color: #ffffff;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }
        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .nav-links {
            display: flex;
            justify-content: center;
            list-style: none;
            flex-wrap: wrap;
        }
        .nav-links li {
            margin: 0 12px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
            transition: all 0.3s;
        }
        .nav-links a:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            position: absolute;
            top: 25px;
            right: 20px;
            z-index: 10;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        h1 {
            color: #2c3e50;
            text-align: center;
            margin-bottom: 30px;
            font-size: 2.8rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        h2 {
            color: #2980b9;
            margin: 40px 0 20px;
            border-bottom: 3px solid #3498db;
            padding-bottom: 10px;
            font-size: 2rem;
            position: relative;
            padding-left: 15px;
        }
        h2:before {
            content: "💼";
            position: absolute;
            left: 0;
            color: #2980b9;
        }
        h3 {
            color: #273c75;
            margin: 30px 0 15px;
            font-size: 1.5rem;
            padding-left: 10px;
            border-left: 4px solid #3498db;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        strong {
            color: #273c75;
        }
        .btn-container {
            text-align: center;
            margin: 50px 0;
        }
        .btn {
            display: inline-block;
            padding: 15px 35px;
            margin: 0 12px;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            transition: all 0.3s;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            font-size: 1.1rem;
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.25);
        }
        .btn-download {
            background: linear-gradient(135deg, #27ae60, #219150);
        }
        .btn-login {
            background: linear-gradient(135deg, #e67e22, #d35400);
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
            transition: transform 0.3s;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 6px 18px rgba(0,0,0,0.12);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            margin-top: 25px;
        }
        .stat-item {
            text-align: center;
            padding: 20px 15px;
            background-color: #e8f4f8;
            border-radius: 10px;
            transition: transform 0.3s;
        }
        .stat-item:hover {
            transform: translateY(-5px);
        }
        .stat-value {
            font-size: 2.2rem;
            font-weight: bold;
            color: #2980b9;
            margin-bottom: 8px;
        }
        .stat-label {
            font-size: 1rem;
            color: #2c3e50;
        }
        .review-container {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-left: 5px solid #3498db;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #f0f0f0;
        }
        .reviewer {
            font-weight: bold;
            color: #2980b9;
            font-size: 1.1rem;
        }
        .rating {
            color: #f39c12;
            font-weight: bold;
            font-size: 1.2rem;
        }
        .tips-list {
            margin: 25px 0;
            padding-left: 50px;
        }
        .tips-list li {
            margin-bottom: 18px;
            font-size: 1.05rem;
            position: relative;
            padding-left: 10px;
        }
        .tips-list li:before {
            content: "•";
            color: #2980b9;
            font-weight: bold;
            position: absolute;
            left: -20px;
        }
        .tag-container {
            margin: 45px 0;
        }
        .tag {
            display: inline-block;
            background-color: #e8f4f8;
            color: #2980b9;
            padding: 10px 20px;
            border-radius: 30px;
            margin: 0 10px 12px 0;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s;
            font-weight: 500;
        }
        .tag:hover {
            background-color: #2980b9;
            color: white;
            transform: translateY(-3px);
        }
        .game-types {
            margin: 35px 0;
        }
        .game-type {
            display: inline-block;
            margin-right: 20px;
            margin-bottom: 10px;
            text-decoration: none;
            color: #2980b9;
            font-weight: 600;
            font-size: 1.05rem;
            position: relative;
            padding-bottom: 3px;
        }
        .game-type:after {
            content: "";
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #2980b9;
            transition: width 0.3s;
        }
        .game-type:hover:after {
            width: 100%;
        }
        footer {
            background-color: #2c3e50;
            color: #f0f0f0;
            padding: 50px 20px 30px;
            margin-top: 60px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #3498db;
            border-left-color: #3498db;
            margin-bottom: 20px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            margin-top: 30px;
            font-size: 0.95rem;
            color: #bbb;
        }
        .copyright a {
            color: #3498db;
            text-decoration: none;
        }
        .copyright a:hover {
            text-decoration: underline;
        }
        .strategy-box {
            background-color: #f1f9f7;
            border-radius: 10px;
            padding: 20px;
            margin: 25px 0;
            border-left: 5px solid #27ae60;
        }
        .event-highlight {
            background-color: #fff9e6;
            border-radius: 10px;
            padding: 20px;
            margin: 25px 0;
            border-left: 5px solid #f39c12;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                align-items: center;
                background-color: rgba(44, 62, 80, 0.95);
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                padding: 70px 20px 30px;
                margin: 0;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 12px 0;
            }
            .nav-links a {
                font-size: 1.1rem;
                padding: 10px 20px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .btn {
                display: block;
                margin: 15px auto;
                width: 90%;
                padding: 15px 20px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .tips-list {
                padding-left: 30px;
            }
        }
