* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f0f8ff;
            color: #2c3e50;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .header {
            background-color: #1a5276;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: #f1c40f;
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            letter-spacing: 1px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s;
            padding: 5px 10px;
            border-radius: 4px;
        }
        .nav-links a:hover {
            color: #f1c40f;
            background-color: rgba(255,255,255,0.1);
        }
        .mobile-menu-btn {
            display: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .main-content {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        h1 {
            color: #1a5276;
            font-size: 2.5rem;
            margin-bottom: 20px;
            border-bottom: 3px solid #f1c40f;
            padding-bottom: 10px;
            text-align: center;
        }
        h2 {
            color: #2980b9;
            font-size: 2rem;
            margin: 40px 0 15px;
            padding-left: 10px;
            border-left: 4px solid #f1c40f;
        }
        h3 {
            color: #3498db;
            font-size: 1.5rem;
            margin: 30px 0 10px;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #c0392b;
            text-decoration: underline;
            text-underline-offset: 4px;
        }
        .btn-container {
            margin: 40px 0;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .btn {
            padding: 14px 30px;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            transition: all 0.3s;
            font-size: 1.1rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .download-btn {
            background-color: #27ae60;
            color: white;
        }
        .login-btn {
            background-color: #e67e22;
            color: white;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.2);
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            border-radius: 12px;
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            border: 5px solid white;
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            border-top: 5px solid #f1c40f;
        }
        .review {
            background-color: #fef9e7;
            border-left: 4px solid #f39c12;
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
            position: relative;
        }
        .review::before {
            content: '"';
            font-size: 5rem;
            color: rgba(243, 156, 18, 0.1);
            position: absolute;
            top: -10px;
            left: 10px;
            font-family: Georgia, serif;
        }
        .strategy-section {
            background-color: #e8f4f8;
            padding: 25px;
            border-radius: 12px;
            margin: 30px 0;
            border: 1px dashed #3498db;
        }
        .event {
            margin: 25px 0;
            padding: 20px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 3px 6px rgba(0,0,0,0.08);
            border-bottom: 3px solid #1a5276;
        }
        .footer {
            background-color: #1a5276;
            color: white;
            padding: 50px 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-types, .tags {
            margin: 30px 0;
        }
        .game-types h4, .tags h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #f1c40f;
            padding-bottom: 5px;
            border-bottom: 2px dotted rgba(255,255,255,0.3);
        }
        .game-types a, .tags a {
            color: #bdc3c7;
            text-decoration: none;
            margin-right: 20px;
            display: inline-block;
            margin-bottom: 10px;
            transition: color 0.3s;
        }
        .game-types a:hover, .tags a:hover {
            color: #f1c40f;
        }
        .copyright {
            margin-top: 40px;
            text-align: center;
            color: #bdc3c7;
            font-size: 0.95rem;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .recommendation {
            margin: 30px 0;
            font-size: 1.1rem;
            padding: 15px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 8px;
        }
        .feature-list {
            margin: 20px 0;
            padding-left: 25px;
        }
        .feature-list li {
            margin-bottom: 12px;
            position: relative;
            padding-left: 20px;
        }
        .feature-list li::before {
            content: '🏏';
            position: absolute;
            left: 0;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #1a5276;
                padding: 20px;
                gap: 15px;
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .btn-container {
                flex-direction: column;
                gap: 15px;
            }
            .btn {
                width: 100%;
                text-align: center;
            }
            p {
                text-align: left;
            }
        }
