* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Nirmala UI', 'Lohit Hindi', sans-serif;
        }
        body {
            background-color: #f9f5eb;
            color: #2c3e50;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #27ae60;
            color: white;
            padding: 18px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.9rem;
            font-weight: bold;
            color: #f1c40f;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo span {
            color: white;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 35px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 1.15rem;
            transition: 0.3s;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        nav ul li a:hover {
            color: #f1c40f;
            border-bottom: 2px solid #f1c40f;
        }
        .mobile-menu-btn {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        #mobile-menu {
            display: none;
        }
        main {
            max-width: 1200px;
            margin: 45px auto;
            padding: 0 20px;
        }
        h1 {
            color: #27ae60;
            margin-bottom: 35px;
            font-size: 2.8rem;
            text-align: center;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            color: #2c3e50;
            margin: 50px 0 25px;
            font-size: 2.2rem;
            border-bottom: 3px solid #27ae60;
            padding-bottom: 12px;
        }
        h3 {
            color: #27ae60;
            margin: 35px 0 18px;
            font-size: 1.6rem;
            background-color: #ecf0f1;
            padding: 8px 15px;
            border-radius: 5px;
            display: inline-block;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            color: #34495e;
        }
        .highlight {
            font-weight: bold;
            color: #27ae60;
            text-decoration: underline dotted;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #27ae60;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            margin: 15px 15px 25px 0;
            transition: 0.3s;
            font-size: 1.2rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #219653;
            transform: translateY(-3px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.2);
        }
        .btn-login {
            background-color: #3498db;
        }
        .btn-login:hover {
            background-color: #2980b9;
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            border: 5px solid white;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 35px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-left: 8px solid #27ae60;
        }
        .stats-box p {
            margin: 12px 0;
            display: flex;
            align-items: center;
        }
        .stats-box p::before {
            content: "•";
            color: #27ae60;
            font-weight: bold;
            margin-right: 10px;
        }
        .review {
            background-color: #ecf0f1;
            border-radius: 8px;
            padding: 20px;
            margin: 25px 0;
            box-shadow: 0 3px 8px rgba(0,0,0,0.08);
            position: relative;
        }
        .review::before {
            content: '"';
            font-size: 5rem;
            color: rgba(39, 174, 96, 0.1);
            position: absolute;
            top: -10px;
            left: 10px;
            font-family: Georgia, serif;
        }
        .reviewer {
            font-style: italic;
            color: #7f8c8d;
            margin-top: 15px;
            font-weight: bold;
        }
        .tip-box {
            background-color: #e8f4f8;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            border: 2px dashed #3498db;
        }
        .tip-box h3 {
            margin-top: 0;
            color: #3498db;
        }
        .tag {
            display: inline-block;
            background-color: #27ae60;
            color: white;
            padding: 8px 15px;
            border-radius: 25px;
            margin: 8px;
            text-decoration: none;
            font-size: 1rem;
            transition: 0.3s;
        }
        .tag:hover {
            background-color: #219653;
            transform: scale(1.05);
        }
        .league-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .league-table th, .league-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #ecf0f1;
        }
        .league-table th {
            background-color: #27ae60;
            color: white;
            font-size: 1.1rem;
        }
        .league-table tr:hover {
            background-color: #f8f9fa;
        }
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 50px 0 30px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h4 {
            font-size: 1.4rem;
            margin-bottom: 25px;
            color: #f1c40f;
            border-bottom: 2px solid #f1c40f;
            padding-bottom: 8px;
            display: inline-block;
        }
        .game-types a, .tags a {
            display: inline-block;
            color: #bdc3c7;
            text-decoration: none;
            margin-right: 20px;
            margin-bottom: 12px;
            font-size: 1.05rem;
            transition: 0.3s;
        }
        .game-types a:hover, .tags a:hover {
            color: #f1c40f;
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #34495e;
            margin-top: 40px;
            font-size: 1rem;
            color: #95a5a6;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 85px;
                left: 0;
                right: 0;
                background-color: #27ae60;
                padding: 25px;
                z-index: 100;
                box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            }
            nav ul li {
                margin: 15px 0;
            }
            #mobile-menu:checked ~ ul {
                display: flex;
            }
            h1 {
                font-size: 2.3rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            p {
                font-size: 1.05rem;
            }
            .btn {
                padding: 12px 22px;
                font-size: 1.1rem;
                display: block;
                width: 100%;
                text-align: center;
                margin: 10px 0;
            }
            .stats-box, .review, .tip-box {
                padding: 18px;
            }
            .league-table th, .league-table td {
                padding: 10px;
                font-size: 0.95rem;
            }
        }
