* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        }
        body {
            background-color: #f5f2ea;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        .header {
            background: linear-gradient(135deg, #e63946 0%, #d62828 100%);
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .logo {
            color: white;
            font-size: 1.8rem;
            font-weight: 800;
            text-decoration: none;
            display: inline-block;
            margin-right: 30px;
            letter-spacing: -0.5px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }
        .nav {
            display: inline-block;
        }
        .nav ul {
            list-style: none;
        }
        .nav li {
            display: inline-block;
            margin-right: 25px;
        }
        .nav a {
            color: white;
            text-decoration: none;
            font-size: 1.05rem;
            font-weight: 500;
            transition: opacity 0.3s;
        }
        .nav a:hover {
            opacity: 0.8;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px 10px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #1a365d;
            font-size: 2.8rem;
            margin: 35px 0 25px;
            text-align: center;
            line-height: 1.3;
        }
        h2 {
            color: #1a365d;
            font-size: 2.1rem;
            margin: 45px 0 20px;
            border-bottom: 3px solid #4895ef;
            padding-bottom: 12px;
            line-height: 1.4;
        }
        h3 {
            color: #1a365d;
            font-size: 1.6rem;
            margin: 35px 0 15px;
            line-height: 1.4;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.1rem;
            color: #333;
        }
        .highlight {
            font-weight: 700;
            color: #e63946;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #4895ef;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            margin: 15px 12px 15px 0;
            transition: all 0.3s;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            font-size: 1.05rem;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        .download-btn {
            background-color: #2a9d8f;
        }
        .login-btn {
            background-color: #f9c74f;
            color: #2d2d2d;
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.15);
            transition: transform 0.3s;
        }
        img:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 35px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-left: 5px solid #e63946;
        }
        .stats-box p {
            margin: 12px 0;
            font-size: 1.1rem;
        }
        .tag {
            display: inline-block;
            background-color: #f1faee;
            padding: 8px 15px;
            border-radius: 25px;
            margin: 8px 6px;
            text-decoration: none;
            color: #1a365d;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.3s;
            border: 1px solid #e0e0e0;
        }
        .tag:hover {
            background-color: #e6f7ff;
            transform: translateY(-2px);
        }
        .game-type {
            display: inline-block;
            margin: 12px 12px 12px 0;
            text-decoration: none;
            color: #4895ef;
            font-weight: 600;
            font-size: 1.05rem;
            transition: color 0.3s;
        }
        .game-type:hover {
            color: #1a365d;
            text-decoration: underline;
        }
        .footer {
            background-color: #1a365d;
            color: white;
            padding: 40px 20px;
            margin-top: 60px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer h3 {
            color: #f1faee;
            margin: 30px 0 15px 0;
            font-size: 1.4rem;
        }
        .footer p {
            margin-bottom: 15px;
            color: #e0e0e0;
        }
        .copyright {
            margin-top: 40px;
            font-size: 0.95rem;
            color: #b0b0b0;
            padding-top: 20px;
            border-top: 1px solid #334e75;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
                float: right;
            }
            .nav {
                display: none;
                width: 100%;
                margin-top: 20px;
            }
            .nav.active {
                display: block;
            }
            .nav li {
                display: block;
                margin: 15px 0;
            }
            .nav a {
                font-size: 1.1rem;
            }
            h1 {
                font-size: 2.2rem;
                margin: 25px 0;
            }
            h2 {
                font-size: 1.8rem;
                margin: 35px 0 15px;
            }
            h3 {
                font-size: 1.4rem;
                margin: 30px 0 12px;
            }
            p {
                font-size: 1.05rem;
            }
            .btn {
                display: block;
                width: 100%;
                text-align: center;
                margin: 10px 0;
                padding: 12px 0;
            }
            .stats-box {
                padding: 20px;
            }
            .footer h3 {
                font-size: 1.3rem;
            }
        }
