* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        }
        body {
            background-color: #fff8f0;
            color: #333;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #b91c1c, #dc2626);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 3px 15px rgba(0,0,0,0.15);
        }
        .logo {
            font-size: 1.9rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 12px;
            color: #ffd700;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            font-family: 'Times New Roman', serif;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
        }
        nav ul {
            display: flex;
            list-style: none;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 6px 12px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        nav 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;
            right: 20px;
            top: 15px;
            z-index: 101;
        }
        .container {
            max-width: 1050px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #b91c1c;
            text-align: center;
            margin: 35px 0 25px;
            font-size: 2.7rem;
            border-bottom: 4px solid #ffd700;
            padding-bottom: 12px;
            font-family: 'Georgia', serif;
        }
        h2 {
            color: #1e3a8a;
            margin: 35px 0 18px;
            font-size: 2rem;
            border-left: 5px solid #dc2626;
            padding-left: 18px;
            font-family: 'Georgia', serif;
        }
        h3 {
            color: #0f766e;
            margin: 28px 0 12px;
            font-size: 1.5rem;
            padding-left: 10px;
            border-left: 3px solid #0f766e;
        }
        p {
            margin-bottom: 18px;
            text-align: justify;
            font-size: 1.05rem;
        }
        .highlight {
            font-weight: bold;
            color: #dc2626;
            text-decoration: none;
        }
        .btn-container {
            text-align: center;
            margin: 45px 0;
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }
        .btn {
            padding: 14px 35px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .download-btn {
            background-color: #059669;
            color: white;
            box-shadow: 0 4px 0 #047857;
        }
        .login-btn {
            background-color: #ea580c;
            color: white;
            box-shadow: 0 4px 0 #c2410c;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 0 #047857, 0 8px 15px rgba(0,0,0,0.1);
        }
        .login-btn:hover {
            box-shadow: 0 6px 0 #c2410c, 0 8px 15px rgba(0,0,0,0.1);
        }
        .btn:active {
            transform: translateY(1px);
            box-shadow: 0 2px 0 #047857;
        }
        .login-btn:active {
            box-shadow: 0 2px 0 #c2410c;
        }
        .image-container {
            text-align: center;
            margin: 35px 0;
        }
        .game-image {
            max-width: 100%;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            margin-bottom: 12px;
            border: 3px solid white;
        }
        .image-caption {
            color: #555;
            font-style: italic;
            font-size: 0.95rem;
            max-width: 80%;
            margin: 0 auto;
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 35px 0;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            border-left: 6px solid #ffd700;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 20px 15px;
            background-color: #fef3c7;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }
        .stat-item:hover {
            transform: translateY(-5px);
        }
        .stat-number {
            font-size: 2.2rem;
            font-weight: bold;
            color: #dc2626;
            margin-bottom: 8px;
            font-family: 'Arial Black', sans-serif;
        }
        .stat-label {
            font-size: 1.05rem;
            color: #4b5563;
        }
        .tips-list {
            margin: 25px 0;
            padding-left: 45px;
        }
        .tips-list li {
            margin-bottom: 18px;
            font-size: 1.05rem;
        }
        .tag-container {
            margin: 40px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .tag {
            background-color: #fde68a;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.95rem;
            transition: all 0.2s ease;
        }
        .tag:hover {
            background-color: #fcd34d;
            transform: translateY(-2px);
        }
        .tag a {
            color: #1e293b;
            text-decoration: none;
            font-weight: 500;
        }
        .game-type-nav {
            margin: 25px 0;
            padding: 15px;
            background-color: #f8fafc;
            border-radius: 8px;
        }
        .game-type-nav a {
            color: #1e3a8a;
            text-decoration: none;
            margin-right: 20px;
            font-weight: 500;
            padding: 5px 0;
            position: relative;
        }
        .game-type-nav a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #1e3a8a;
            transition: width 0.3s ease;
        }
        .game-type-nav a:hover:after {
            width: 100%;
        }
        footer {
            background-color: #1e293b;
            color: white;
            padding: 50px 20px 30px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1050px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #ffd700;
            border-bottom: 2px solid #ffd700;
            padding-bottom: 12px;
            margin-bottom: 20px;
            font-size: 1.4rem;
        }
        .footer-section p {
            color: #e2e8f0;
            font-size: 1rem;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 30px;
            font-size: 0.95rem;
            color: #cbd5e1;
        }
        .feature-box {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            border-top: 4px solid #0ea5e9;
        }
        .quote-box {
            font-style: italic;
            border-left: 4px solid #64748b;
            padding-left: 20px;
            margin: 25px 0;
            color: #334155;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                align-items: center;
                margin-top: 25px;
                background-color: rgba(185, 28, 28, 0.95);
                padding: 20px;
                border-radius: 8px;
            }
            nav ul.active {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
                margin: 25px 0 15px;
            }
            h2 {
                font-size: 1.7rem;
                margin: 25px 0 15px;
            }
            h3 {
                font-size: 1.4rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            .btn {
                width: 90%;
                justify-content: center;
                padding: 12px 20px;
                font-size: 1.1rem;
            }
            .tips-list {
                padding-left: 30px;
            }
            .game-type-nav a {
                display: inline-block;
                margin-bottom: 10px;
            }
        }
