* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', sans-serif;
        }
        body {
            background-color: #f0f2f5;
            color: #2d3436;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 3px 15px rgba(0,0,0,0.3);
        }
        .logo {
            font-size: 2.2rem;
            font-weight: bold;
            text-align: center;
            color: #f1c40f;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
            margin: 10px 0;
            letter-spacing: 1px;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        nav ul {
            display: flex;
            list-style: none;
            justify-content: center;
            flex-wrap: wrap;
            gap: 12px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            padding: 9px 18px;
            border-radius: 25px;
            transition: all 0.3s ease;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
        }
        nav ul li a:hover {
            background-color: rgba(255,255,255,0.25);
            color: #f1c40f;
            transform: translateY(-2px);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            position: absolute;
            top: 15px;
            right: 20px;
            z-index: 1001;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 25px 15px;
        }
        h1 {
            color: #c0392b;
            text-align: center;
            margin: 35px 0 25px;
            font-size: 2.6rem;
            line-height: 1.4;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            color: #e74c3c;
            margin: 40px 0 20px;
            padding-bottom: 12px;
            border-bottom: 3px solid #f1c40f;
            font-size: 1.9rem;
            position: relative;
            padding-left: 10px;
        }
        h2::before {
            content: "⚽";
            position: absolute;
            left: -30px;
            top: 5px;
        }
        h3 {
            color: #27ae60;
            margin: 30px 0 15px;
            font-size: 1.5rem;
            padding-left: 10px;
            border-left: 4px solid #27ae60;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.08rem;
            text-align: justify;
            line-height: 1.8;
        }
        .btn-container {
            text-align: center;
            margin: 45px 0;
        }
        .btn {
            display: inline-block;
            padding: 15px 30px;
            margin: 0 12px 18px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .btn-download {
            background-color: #27ae60;
            color: white;
        }
        .btn-login {
            background-color: #3498db;
            color: white;
        }
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
            border: 6px solid white;
            transition: transform 0.3s ease;
        }
        img:hover {
            transform: scale(1.02);
        }
        .highlight {
            font-weight: bold;
            color: #c0392b;
            text-shadow: 0.5px 0.5px 1px rgba(0,0,0,0.1);
        }
        .tag-container {
            margin: 45px 0;
            padding: 25px;
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .tag {
            display: inline-block;
            background-color: #ffeaa7;
            color: #d63031;
            padding: 9px 18px;
            border-radius: 50px;
            margin: 0 10px 12px 0;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        .tag:hover {
            background-color: #fdcb6e;
            transform: translateY(-3px);
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        .game-types {
            margin: 45px 0;
            padding: 25px;
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .game-type {
            display: inline-block;
            margin: 0 15px 12px 0;
            text-decoration: none;
            color: #c0392b;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
            padding-bottom: 3px;
        }
        .game-type:hover {
            color: #27ae60;
        }
        .game-type::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #27ae60;
            transition: width 0.3s ease;
        }
        .game-type:hover::after {
            width: 100%;
        }
        footer {
            background-color: #2d3436;
            color: white;
            padding: 60px 20px 30px;
            margin-top: 70px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 35px;
            padding-bottom: 25px;
            border-bottom: 1px solid #555;
        }
        .footer-section:last-child {
            border-bottom: none;
        }
        .footer-section h4 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: #f1c40f;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .footer-section a {
            color: #74b9ff;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-section a:hover {
            color: #0984e3;
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            margin-top: 25px;
            font-size: 0.95rem;
            color: #b2bec3;
            border-top: 1px solid #444;
        }
        .tips-box {
            background-color: #e8f5e9;
            border-left: 5px solid #2e7d32;
            padding: 20px;
            margin: 30px 0;
            border-radius: 5px;
        }
        .tips-box h4 {
            color: #2e7d32;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        .event-badge {
            display: inline-block;
            background-color: #ffcccc;
            color: #d32f2f;
            padding: 3px 10px;
            border-radius: 4px;
            font-size: 0.85rem;
            font-weight: bold;
            margin-right: 8px;
        }
        @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(192, 57, 43, 0.95);
                border-radius: 10px;
                padding: 20px 0;
                position: relative;
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 10px 0;
                width: 80%;
                text-align: center;
            }
            h1 {
                font-size: 2.1rem;
                padding: 0 10px;
            }
            h2 {
                font-size: 1.6rem;
                padding-left: 0;
            }
            h2::before {
                display: none;
            }
            h3 {
                font-size: 1.3rem;
            }
            .btn {
                display: block;
                margin: 20px auto;
                width: 90%;
                padding: 14px 20px;
                font-size: 1.1rem;
            }
            .image-container {
                margin: 30px 0;
            }
            .tag {
                padding: 8px 15px;
                margin: 0 8px 10px 0;
            }
        }
