* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Rounded MT Bold', 'Helvetica Neue', 'Segoe UI', sans-serif;
        }
        body {
            background-color: #fdf2f8;
            color: #2d3748;
            line-height: 1.8;
            padding-bottom: 150px;
            font-size: 16px;
        }
        .container {
            width: 95%;
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background: linear-gradient(135deg, #e53e3e, #c53030);
            color: white;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: #ffddaf;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            white-space: nowrap;
            margin-bottom: 10px;
        }
        @media (min-width: 768px) {
            .logo {
                font-size: 2.4rem;
                margin-bottom: 0;
            }
        }
        .logo span {
            color: #ffffff;
        }
        .nav-links {
            display: none;
            flex-direction: column;
            width: 100%;
            gap: 18px;
            margin-top: 15px;
        }
        .nav-links.active {
            display: flex;
        }
        @media (min-width: 768px) {
            .nav-links {
                display: flex;
                flex-direction: row;
                width: auto;
                gap: 25px;
                margin-top: 0;
            }
        }
        @media (min-width: 992px) {
            .nav-links {
                gap: 35px;
            }
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            padding: 8px 0;
            border-bottom: 3px solid transparent;
            display: inline-block;
        }
        .nav-links a:hover {
            color: #ffddaf;
            border-bottom: 3px solid #ffddaf;
        }
        .daman-link {
            background-color: #ffddaf;
            padding: 10px 20px;
            border-radius: 30px;
            color: #c53030 !important;
            font-weight: 800;
            border-bottom: none !important;
            box-shadow: 0 3px 8px rgba(0,0,0,0.2);
            text-align: center;
        }
        .daman-link:hover {
            background-color: #ffc187;
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(0,0,0,0.25);
        }
        .menu-btn {
            display: block;
            font-size: 2rem;
            cursor: pointer;
            color: white;
            z-index: 10000;
        }
        @media (min-width: 768px) {
            .menu-btn {
                display: none;
            }
        }
        .hero {
            background: linear-gradient(135deg, #e53e3e, #f56565);
            color: white;
            padding: 60px 0;
            border-radius: 0 0 40px 40px;
            margin-bottom: 50px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        @media (min-width: 992px) {
            .hero {
                padding: 80px 0;
                margin-bottom: 60px;
            }
        }
        .hero::before {
            content: "🏏";
            position: absolute;
            top: 30px;
            left: 20px;
            font-size: 10rem;
            opacity: 0.1;
            transform: rotate(-20deg);
        }
        .hero::after {
            content: "🔥";
            position: absolute;
            bottom: 30px;
            right: 20px;
            font-size: 10rem;
            opacity: 0.1;
            transform: rotate(20deg);
        }
        .hero h1 {
            font-size: 2.3rem;
            margin-bottom: 25px;
            color: #ffffff;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
            position: relative;
            z-index: 1;
            line-height: 1.4;
        }
        @media (min-width: 768px) {
            .hero h1 {
                font-size: 3rem;
                margin-bottom: 30px;
            }
        }
        @media (min-width: 992px) {
            .hero h1 {
                font-size: 3.6rem;
                margin-bottom: 35px;
            }
        }
        .hero p {
            font-size: 1.15rem;
            max-width: 800px;
            margin: 0 auto 30px;
            position: relative;
            z-index: 1;
            color: #fff5f5;
        }
        @media (min-width: 768px) {
            .hero p {
                font-size: 1.25rem;
                margin-bottom: 35px;
            }
        }
        @media (min-width: 992px) {
            .hero p {
                font-size: 1.35rem;
                margin-bottom: 40px;
            }
        }
        .btn-container {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }
        .btn {
            padding: 14px 35px;
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 800;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }
        @media (min-width: 768px) {
            .btn {
                padding: 16px 40px;
                font-size: 1.2rem;
            }
        }
        @media (min-width: 992px) {
            .btn {
                padding: 18px 45px;
                font-size: 1.3rem;
            }
        }
        .download-btn {
            background-color: #48bb78;
            color: white;
        }
        .download-btn:hover {
            background-color: #38a169;
            transform: translateY(-4px);
            box-shadow: 0 8px 18px rgba(0,0,0,0.25);
        }
        .login-btn {
            background-color: #4299e1;
            color: white;
        }
        .login-btn:hover {
            background-color: #3182ce;
            transform: translateY(-4px);
            box-shadow: 0 8px 18px rgba(0,0,0,0.25);
        }
        .content {
            background-color: white;
            border-radius: 25px;
            padding: 30px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            margin-bottom: 50px;
        }
        @media (min-width: 768px) {
            .content {
                padding: 40px;
                margin-bottom: 60px;
            }
        }
        @media (min-width: 992px) {
            .content {
                padding: 45px;
                margin-bottom: 70px;
            }
        }
        h2 {
            font-size: 1.9rem;
            color: #e53e3e;
            margin: 50px 0 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid #2d3748;
            position: relative;
        }
        @media (min-width: 768px) {
            h2 {
                font-size: 2.3rem;
                margin: 60px 0 30px;
                padding-bottom: 18px;
            }
        }
        @media (min-width: 992px) {
            h2 {
                font-size: 2.7rem;
                margin: 70px 0 35px;
                padding-bottom: 20px;
            }
        }
        h2::after {
            content: "";
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 120px;
            height: 3px;
            background-color: #e53e3e;
        }
        h3 {
            font-size: 1.6rem;
            color: #2d3748;
            margin: 35px 0 22px;
            display: flex;
            align-items: center;
        }
        @media (min-width: 768px) {
            h3 {
                font-size: 1.8rem;
                margin: 40px 0 25px;
            }
        }
        @media (min-width: 992px) {
            h3 {
                font-size: 2.1rem;
                margin: 45px 0 28px;
            }
        }
        h3::before {
            content: "🏏";
            margin-right: 12px;
            color: #e53e3e;
        }
        h4 {
            font-size: 1.3rem;
            color: #2d3748;
            margin: 30px 0 18px;
            display: flex;
            align-items: center;
        }
        @media (min-width: 768px) {
            h4 {
                font-size: 1.5rem;
                margin: 33px 0 20px;
            }
        }
        @media (min-width: 992px) {
            h4 {
                font-size: 1.7rem;
                margin: 37px 0 22px;
            }
        }
        h4::before {
            content: "🇮🇳";
            margin-right: 10px;
        }
        h5 {
            font-size: 1.15rem;
            color: #e53e3e;
            margin: 25px 0 15px;
            display: flex;
            align-items: center;
        }
        @media (min-width: 768px) {
            h5 {
                font-size: 1.25rem;
                margin: 28px 0 17px;
            }
        }
        @media (min-width: 992px) {
            h5 {
                font-size: 1.35rem;
                margin: 30px 0 18px;
            }
        }
        h5::before {
            content: "✨";
            margin-right: 8px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.05rem;
            color: #4a5568;
            line-height: 1.8;
        }
        @media (min-width: 768px) {
            p {
                font-size: 1.1rem;
                margin-bottom: 28px;
            }
        }
        @media (min-width: 992px) {
            p {
                font-size: 1.15rem;
                margin-bottom: 30px;
            }
        }
        .highlight {
            font-weight: 800;
            color: #e53e3e;
            font-size: 1.15rem;
        }
        @media (min-width: 768px) {
            .highlight {
                font-size: 1.2rem;
            }
        }
        .keyword {
            font-weight: 900;
            color: #e53e3e;
            font-size: 1.2rem;
            display: inline-block;
            margin: 0 2px;
        }
        @media (min-width: 768px) {
            .keyword {
                font-size: 1.25rem;
            }
        }
        .emoji {
            margin-right: 10px;
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        @media (min-width: 768px) {
            .image-container {
                margin: 50px 0;
            }
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 0 auto;
        }
        .image-caption {
            font-size: 1rem;
            color: #718096;
            padding: 15px 0;
            background-color: #fafafa;
            font-style: italic;
        }
        @media (min-width: 768px) {
            .image-caption {
                font-size: 1.05rem;
                padding: 18px 0;
            }
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            font-size: 1rem;
        }
        @media (min-width: 768px) {
            .stats-table {
                margin: 50px 0;
                font-size: 1.05rem;
            }
        }
        .stats-table th, .stats-table td {
            padding: 14px 18px;
            text-align: left;
            border-bottom: 2px solid #e2e8f0;
        }
        @media (min-width: 768px) {
            .stats-table th, .stats-table td {
                padding: 16px 20px;
            }
        }
        .stats-table th {
            background-color: #e53e3e;
            color: white;
            font-weight: 800;
            text-transform: uppercase;
            font-size: 0.95rem;
            letter-spacing: 1px;
        }
        @media (min-width: 768px) {
            .stats-table th {
                font-size: 1rem;
            }
        }
        .stats-table tr:hover {
            background-color: #fff5f5;
            transform: scale(1.005);
            transition: transform 0.2s ease;
        }
        .stats-table tr:nth-child(even) {
            background-color: #fafafa;
        }
        .list-container {
            margin: 30px 0 40px 30px;
        }
        @media (min-width: 768px) {
            .list-container {
                margin: 35px 0 45px 35px;
            }
        }
        .list-container li {
            margin-bottom: 18px;
            font-size: 1.05rem;
            color: #4a5568;
            position: relative;
            padding-left: 25px;
        }
        @media (min-width: 768px) {
            .list-container li {
                margin-bottom: 20px;
                font-size: 1.1rem;
                padding-left: 30px;
            }
        }
        .list-container li::before {
            content: "🇮🇳";
            position: absolute;
            left: 0;
            top: 2px;
            color: #e53e3e;
        }
        .tabs {
            display: flex;
            gap: 12px;
            margin: 35px 0;
            flex-wrap: wrap;
            border-bottom: 2px solid #e2e8f0;
            padding-bottom: 12px;
        }
        @media (min-width: 768px) {
            .tabs {
                gap: 15px;
                margin: 40px 0;
                padding-bottom: 15px;
            }
        }
        @media (min-width: 992px) {
            .tabs {
                gap: 20px;
                margin: 45px 0;
                padding-bottom: 18px;
            }
        }
        .tab-btn {
            padding: 10px 20px;
            background-color: #fafafa;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            font-weight: 700;
            color: #2d3748;
        }
        @media (min-width: 768px) {
            .tab-btn {
                padding: 12px 24px;
                font-size: 1rem;
            }
        }
        @media (min-width: 992px) {
            .tab-btn {
                padding: 14px 28px;
                font-size: 1.1rem;
            }
        }
        .tab-btn.active {
            background-color: #e53e3e;
            color: white;
            box-shadow: 0 4px 10px rgba(229,62,62,0.3);
        }
        .tab-btn:hover:not(.active) {
            background-color: #fef7fb;
            transform: translateY(-3px);
        }
        .tab-content {
            padding: 30px;
            border-radius: 20px;
            background-color: #fff5f5;
            margin-bottom: 30px;
            border-left: 5px solid #e53e3e;
        }
        @media (min-width: 768px) {
            .tab-content {
                padding: 35px;
                margin-bottom: 35px;
            }
        }
        .community-card {
            background-color: #fed7d7;
            border-radius: 18px;
            padding: 25px;
            margin: 30px 0;
            border-left: 6px solid #c53030;
            box-shadow: 0 3px 12px rgba(0,0,0,0.08);
        }
        @media (min-width: 768px) {
            .community-card {
                padding: 30px;
                margin: 35px 0;
            }
        }
        .community-card h4 {
            color: #c53030;
            margin-bottom: 15px;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
        }
        .community-card h4::before {
            content: "💬";
            margin-right: 10px;
        }
        .community-card p {
            margin-bottom: 18px;
        }
        .dev-response {
            background-color: #c6f6d5;
            padding: 18px;
            border-radius: 10px;
            margin-top: 15px;
            border-left: 4px solid #22c55e;
        }
        .dev-response strong {
            color: #16a34a;
            font-size: 1.1rem;
        }
        .strategy-card {
            background-color: #fcf1f7;
            border-radius: 18px;
            padding: 25px;
            margin: 30px 0;
            border-top: 6px solid #9f7aea;
            box-shadow: 0 3px 12px rgba(0,0,0,0.08);
        }
        @media (min-width: 768px) {
            .strategy-card {
                padding: 30px;
                margin: 35px 0;
            }
        }
        .strategy-card h4 {
            color: #9f7aea;
            margin-bottom: 18px;
        }
        .event-card {
            background-color: #fef7fb;
            border-radius: 18px;
            padding: 25px;
            margin: 30px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            align-items: center;
            box-shadow: 0 3px 12px rgba(0,0,0,0.08);
        }
        @media (min-width: 768px) {
            .event-card {
                padding: 30px;
                margin: 35px 0;
                gap: 30px;
            }
        }
        .event-icon {
            font-size: 3.5rem;
            flex: 1 1 60px;
            text-align: center;
        }
        .event-details {
            flex: 3 1 300px;
        }
        .event-details h4 {
            color: #e53e3e;
            margin-bottom: 12px;
        }
        .cta-section {
            background: linear-gradient(135deg, #e53e3e, #9f7aea);
            border-radius: 25px;
            padding: 35px;
            margin: 50px 0;
            text-align: center;
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        }
        @media (min-width: 768px) {
            .cta-section {
                padding: 45px;
                margin: 60px 0;
            }
        }
        .cta-section h3 {
            color: white;
            margin-bottom: 30px;
            justify-content: center;
        }
        .cta-section h3::before {
            color: white;
        }
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        footer {
            background-color: #2d3748;
            color: white;
            padding: 60px 0 30px;
            border-radius: 40px 40px 0 0;
            margin-top: 80px;
        }
        @media (min-width: 992px) {
            footer {
                padding: 70px 0 40px;
                margin-top: 90px;
            }
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        @media (min-width: 768px) {
            .footer-container {
                gap: 50px;
                margin-bottom: 60px;
            }
        }
        @media (min-width: 992px) {
            .footer-container {
                gap: 60px;
                margin-bottom: 70px;
            }
        }
        .footer-section h4 {
            font-size: 1.4rem;
            margin-bottom: 25px;
            color: #ffddaf;
            padding-bottom: 12px;
            border-bottom: 2px solid #4a5568;
        }
        @media (min-width: 768px) {
            .footer-section h4 {
                font-size: 1.5rem;
                margin-bottom: 30px;
                padding-bottom: 15px;
            }
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 15px;
        }
        .footer-links a {
            color: #a0aec0;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 1rem;
        }
        .footer-links a:hover {
            color: #ffddaf;
            padding-left: 8px;
        }
        .game-type-nav {
            margin: 40px 0;
        }
        .game-type-nav h4 {
            margin-bottom: 22px;
            color: #ffddaf;
        }
        .type-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .type-links a {
            background-color: #4a5568;
            padding: 10px 20px;
            border-radius: 25px;
            color: white;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .type-links a:hover {
            background-color: #ffddaf;
            color: #2d3748;
            transform: translateY(-3px);
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 35px 0 50px;
        }
        @media (min-width: 768px) {
            .tags {
                gap: 18px;
                margin: 40px 0 60px;
            }
        }
        .tag {
            background-color: #4a5568;
            padding: 10px 22px;
            border-radius: 25px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .tag a {
            color: white;
            text-decoration: none;
        }
        .tag:hover {
            background-color: #ffddaf;
            color: #2d3748;
            transform: translateY(-3px);
        }
        .tag:hover a {
            color: #2d3748;
        }
        .recommendation {
            background-color: #4a5568;
            padding: 30px;
            border-radius: 20px;
            margin: 40px 0;
            text-align: center;
            font-size: 1.1rem;
            line-height: 1.9;
        }
        @media (min-width: 768px) {
            .recommendation {
                padding: 35px;
                font-size: 1.2rem;
                line-height: 2;
            }
        }
        .recommendation a {
            color: #ffddaf;
            font-weight: 800;
            text-decoration: none;
        }
        .recommendation a:hover {
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 35px;
            border-top: 2px solid #4a5568;
            font-size: 1rem;
            color: #a0aec0;
        }
        @media (min-width: 768px) {
            .copyright {
                padding-top: 45px;
                font-size: 1.05rem;
            }
        }
        @media (max-width: 576px) {
            .stats-table {
                font-size: 0.95rem;
            }
            .stats-table th, .stats-table td {
                padding: 12px 15px;
            }
            .event-card {
                flex-direction: column;
                text-align: center;
            }
            .tags {
                gap: 12px;
            }
            .tag {
                padding: 8px 18px;
                font-size: 0.95rem;
            }
            .cta-buttons {
                gap: 20px;
            }
        }
