* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #fff8f0;
            color: #3a3a3a;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        .header {
            background-color: #e63946;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .logo {
            color: #ffffff;
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }
        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-links {
            display: flex;
            gap: 25px;
            margin-left: 20px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.05rem;
            transition: all 0.3s ease;
        }
        .nav-links a:hover {
            text-decoration: underline;
            color: #ffdfdf;
        }
        .menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.6rem;
            cursor: pointer;
            z-index: 101;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #c1121f;
            margin: 30px 0 20px;
            font-size: 2.5rem;
            text-align: center;
            line-height: 1.4;
        }
        h2 {
            color: #d62828;
            margin: 40px 0 18px;
            font-size: 2rem;
            border-bottom: 2px solid #ffd1d1;
            padding-bottom: 10px;
        }
        h3 {
            color: #e63946;
            margin: 30px 0 15px;
            font-size: 1.5rem;
            position: relative;
            padding-left: 10px;
        }
        h3::before {
            content: "🌶️";
            position: absolute;
            left: -25px;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .highlight {
            font-weight: bold;
            color: #c1121f;
            text-decoration: underline dotted;
            text-underline-offset: 4px;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            margin: 20px 10px;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            text-align: center;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 3px 5px rgba(0,0,0,0.1);
        }
        .download-btn {
            background-color: #28a745;
            color: white;
        }
        .login-btn {
            background-color: #0d6efd;
            color: white;
        }
        .btn:hover {
            opacity: 0.9;
            transform: translateY(-2px);
            box-shadow: 0 5px 8px rgba(0,0,0,0.15);
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 10px rgba(0,0,0,0.15);
            border: 2px solid #ffffff;
        }
        .stats-box {
            background-color: #ffe5e5;
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
            border-left: 5px solid #e63946;
            box-shadow: 0 2px 7px rgba(0,0,0,0.07);
        }
        .review {
            background-color: #e8f5e9;
            padding: 18px;
            border-radius: 8px;
            margin: 18px 0;
            border: 1px solid #c8e6c9;
        }
        .tag {
            display: inline-block;
            background-color: #ffcdd2;
            padding: 5px 12px;
            border-radius: 20px;
            margin: 6px;
            text-decoration: none;
            color: #d32f2f;
            font-size: 0.9rem;
            transition: all 0.2s ease;
        }
        .tag:hover {
            background-color: #ef9a9a;
            color: #ffffff;
        }
        .game-type {
            display: inline-block;
            margin: 10px 15px 10px 0;
            text-decoration: none;
            color: #1976d2;
            font-weight: 500;
            font-size: 1rem;
        }
        .game-type:hover {
            text-decoration: underline;
            color: #0d47a1;
        }
        .footer {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 2px solid #ffd1d1;
        }
        .copyright {
            margin-top: 20px;
            color: #666666;
            font-size: 0.9rem;
            text-align: center;
            padding: 12px 0;
            border-top: 1px solid #f0f0f0;
        }
        .tip-box {
            background-color: #fff3e0;
            padding: 18px;
            border-radius: 8px;
            margin: 20px 0;
            border-left: 4px solid #f57c00;
        }
        .tip-box p {
            margin-bottom: 8px;
            font-size: 1.05rem;
        }
        .tip-box strong {
            color: #e65100;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 65px;
                left: 0;
                right: 0;
                background-color: #e63946;
                padding: 20px;
                gap: 15px;
                box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .menu-btn {
                display: block;
                position: absolute;
                right: 20px;
                top: 20px;
            }
            h1 {
                font-size: 2.1rem;
                margin: 20px 0 15px;
            }
            h2 {
                font-size: 1.7rem;
                margin: 30px 0 12px;
            }
            h3 {
                font-size: 1.3rem;
                margin: 25px 0 12px;
                padding-left: 5px;
            }
            h3::before {
                left: -20px;
            }
            .btn {
                display: block;
                width: 100%;
                margin: 12px 0;
                padding: 12px;
            }
            .container {
                padding: 12px;
            }
            .image-container {
                margin: 20px 0;
            }
            .stats-box, .review, .tip-box {
                padding: 15px 12px;
            }
        }
