* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Malayalam MN', 'Tamil MN', 'Gujarati MN', 'Hindi MN', sans-serif;
        }
        body {
            background-color: #fff5e6;
            color: #2c3e50;
            line-height: 1.9;
            font-size: 16px;
            padding-bottom: 120px;
            letter-spacing: 0.5px;
        }
        .header {
            background: linear-gradient(135deg, #e74c3c, #d35400);
            padding: 28px 35px;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 10px 30px rgba(0,0,0,0.25);
        }
        .nav-container {
            max-width: 1600px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 3.2rem;
            font-weight: 900;
            color: #ffffff;
            text-shadow: 5px 5px 10px rgba(0,0,0,0.35);
            text-decoration: none;
            letter-spacing: 4px;
            display: flex;
            align-items: center;
            text-transform: uppercase;
            gap: 15px;
        }
        .logo span {
            color: #ffdd59;
            font-style: italic;
            text-decoration: underline;
            text-underline-offset: 8px;
        }
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 40px;
        }
        .nav-menu li a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.25rem;
            transition: all 0.3s ease;
            padding: 15px 0;
            border-bottom: 6px solid transparent;
        }
        .nav-menu li a:hover {
            color: #ffdd59;
            border-bottom: 6px solid #ffdd59;
        }
        .daman-link {
            background-color: #ffdd59;
            color: #2c3e50 !important;
            padding: 18px 35px;
            border-radius: 50px;
            font-weight: 800;
            border-bottom: none !important;
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }
        .daman-link:hover {
            background-color: #ffffff;
            transform: translateY(-6px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.35);
        }
        .hamburger {
            display: none;
            font-size: 3rem;
            color: #ffffff;
            cursor: pointer;
            background: transparent;
            border: none;
            z-index: 10000;
        }
        .container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 50px 30px;
        }
        h1 {
            font-size: 3.8rem;
            color: #e74c3c;
            margin: 70px 0 60px;
            text-align: center;
            text-shadow: 4px 4px 8px rgba(0,0,0,0.2);
            font-weight: 900;
            line-height: 1.7;
        }
        h2 {
            font-size: 2.8rem;
            color: #c0392b;
            margin: 100px 0 45px;
            border-left: 12px solid #ffdd59;
            padding-left: 35px;
            font-weight: 800;
            line-height: 1.8;
        }
        h3 {
            font-size: 2.3rem;
            color: #3498db;
            margin: 80px 0 35px;
            font-weight: 700;
            display: flex;
            align-items: center;
            line-height: 1.9;
        }
        h3::before {
            content: "🌶️";
            margin-right: 25px;
        }
        h4 {
            font-size: 1.8rem;
            color: #27ae60;
            margin: 60px 0 30px;
            font-weight: 600;
            line-height: 1.9;
        }
        p {
            margin-bottom: 40px;
            font-size: 1.25rem;
            line-height: 2.0;
            text-align: justify;
            padding: 0 10px;
        }
        .highlight {
            font-weight: 900;
            color: #e74c3c;
            font-size: 1.4rem;
        }
        .key-term {
            font-weight: 800;
            color: #d35400;
            text-decoration: underline;
            text-underline-offset: 7px;
        }
        .stats-box {
            background-color: #ffffff;
            border-radius: 30px;
            padding: 60px;
            margin: 70px 0;
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            justify-content: center;
        }
        .stat-item {
            flex: 1;
            min-width: 280px;
            text-align: center;
            padding: 35px;
            border-radius: 25px;
            background-color: #ffebe6;
            border: 4px solid #e74c3c;
        }
        .stat-item h4 {
            color: #3498db;
            margin-bottom: 25px;
            font-size: 1.6rem;
            margin-top: 0;
        }
        .stat-item p {
            font-size: 3.5rem;
            font-weight: 900;
            color: #e74c3c;
            margin: 0;
            line-height: 1.7;
        }
        .img-wrapper {
            text-align: center;
            margin: 80px 0;
        }
        .game-img {
            width: 100%;
            max-width: 1300px;
            border-radius: 30px;
            box-shadow: 0 15px 45px rgba(0,0,0,0.25);
            margin: 0 auto;
            border: 8px solid #ffdd59;
        }
        .small-img {
            max-width: 900px;
        }
        .medium-img {
            max-width: 1100px;
        }
        .btn-container {
            display: flex;
            gap: 50px;
            justify-content: center;
            margin: 90px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 28px 55px;
            border-radius: 60px;
            font-size: 1.8rem;
            font-weight: 800;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 12px 30px rgba(0,0,0,0.3);
            display: inline-flex;
            align-items: center;
            gap: 25px;
            text-transform: uppercase;
            letter-spacing: 3px;
        }
        .download-btn {
            background-color: #e74c3c;
            color: #ffffff;
        }
        .download-btn:hover {
            background-color: #c0392b;
            transform: translateY(-8px);
            box-shadow: 0 18px 40px rgba(0,0,0,0.4);
        }
        .login-btn {
            background-color: #3498db;
            color: #ffffff;
        }
        .login-btn:hover {
            background-color: #2980b9;
            transform: translateY(-8px);
            box-shadow: 0 18px 40px rgba(0,0,0,0.4);
        }
        .guide-list, .event-list, .genre-list, .tag-list {
            list-style: none;
            margin: 60px 0;
        }
        .guide-list li, .event-list li {
            background-color: #ffffff;
            border-left: 10px solid #e74c3c;
            padding: 30px 40px;
            margin-bottom: 35px;
            border-radius: 0 25px 25px 0;
            box-shadow: 0 8px 22px rgba(0,0,0,0.15);
            font-size: 1.3rem;
            line-height: 2.2;
        }
        .guide-list li::before {
            content: "🥒";
            margin-right: 25px;
            color: #d35400;
        }
        .event-list li::before {
            content: "🎉";
            margin-right: 25px;
            color: #e74c3c;
        }
        .community-list li {
            background-color: #ffebe6;
            border-radius: 25px;
            padding: 35px;
            margin-bottom: 35px;
            box-shadow: 0 8px 22px rgba(0,0,0,0.15);
            border-top: 8px solid #3498db;
        }
        .community-list li strong {
            color: #e74c3c;
            font-size: 1.4rem;
        }
        .section {
            background-color: #ffffff;
            border-radius: 30px;
            padding: 60px;
            margin-bottom: 80px;
            box-shadow: 0 12px 35px rgba(0,0,0,0.1);
        }
        .community-cards {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            margin: 70px 0;
        }
        .community-card {
            flex: 1;
            min-width: 350px;
            background-color: #ffebe6;
            border-radius: 30px;
            padding: 45px;
            box-shadow: 0 10px 28px rgba(0,0,0,0.15);
            text-align: center;
            border-top: 9px solid #e74c3c;
        }
        .community-card i {
            font-size: 5rem;
            color: #3498db;
            margin-bottom: 35px;
            display: block;
        }
        .community-card h4 {
            color: #2c3e50;
            margin-bottom: 30px;
            margin-top: 0;
        }
        .community-card p {
            color: #7f8c8d;
            margin-bottom: 40px;
            text-align: center;
        }
        .community-card a {
            color: #e74c3c;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.4rem;
            border-bottom: 4px solid transparent;
        }
        .community-card a:hover {
            color: #c0392b;
            border-bottom: 4px solid #c0392b;
        }
        .footer {
            background-color: #2c3e50;
            color: #ffffff;
            padding: 100px 50px 70px;
            margin-top: 180px;
            border-top-left-radius: 50px;
            border-top-right-radius: 50px;
        }
        .footer-container {
            max-width: 1500px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 80px;
        }
        .footer-section h3 {
            color: #ffdd59;
            margin-bottom: 45px;
            font-size: 2.2rem;
            border-bottom: 6px solid #3498db;
            padding-bottom: 25px;
            display: inline-block;
            margin-top: 0;
        }
        .genre-list, .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        .genre-list li, .tag-list li {
            margin-bottom: 30px;
        }
        .genre-list a, .tag-list a {
            color: #ffffff;
            background-color: #34495e;
            padding: 18px 35px;
            border-radius: 40px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.3rem;
            font-weight: 600;
        }
        .genre-list a:hover, .tag-list a:hover {
            background-color: #e74c3c;
            transform: translateY(-6px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        }
        .recommendation {
            background-color: #34495e;
            border-radius: 30px;
            padding: 60px;
            margin: 80px 0;
            text-align: center;
            border: 5px solid #ffdd59;
        }
        .recommendation p {
            font-size: 1.8rem;
            color: #ffffff;
            margin: 0;
            line-height: 2.6;
            text-align: center;
        }
        .recommendation span {
            color: #ffdd59;
            font-weight: 800;
        }
        .copyright {
            text-align: center;
            color: #bdc3c7;
            font-size: 1.3rem;
            padding-top: 70px;
            border-top: 5px solid #34495e;
            margin-top: 80px;
            line-height: 2.2;
        }
        @media (max-width: 1400px) {
            .nav-menu {
                gap: 35px;
            }
            h1 {
                font-size: 3.5rem;
            }
            h2 {
                font-size: 2.6rem;
            }
            h3 {
                font-size: 2.1rem;
            }
            .stat-item {
                min-width: 250px;
            }
            .btn {
                padding: 25px 50px;
                font-size: 1.7rem;
            }
        }
        @media (max-width: 1200px) {
            .nav-menu {
                gap: 30px;
            }
            .logo {
                font-size: 2.9rem;
            }
            h1 {
                font-size: 3.2rem;
            }
            h2 {
                font-size: 2.4rem;
                margin: 90px 0 40px;
                padding-left: 30px;
            }
            h3 {
                font-size: 2.0rem;
            }
            .btn {
                padding: 23px 45px;
                font-size: 1.6rem;
            }
            .stats-box {
                padding: 50px;
                gap: 40px;
            }
        }
        @media (max-width: 992px) {
            .nav-menu {
                gap: 25px;
            }
            .logo {
                font-size: 2.6rem;
            }
            h1 {
                font-size: 2.9rem;
            }
            h2 {
                font-size: 2.2rem;
                margin: 80px 0 35px;
                padding-left: 25px;
            }
            h3 {
                font-size: 1.9rem;
            }
            .btn {
                padding: 20px 40px;
                font-size: 1.5rem;
            }
            .stats-box {
                padding: 45px;
                gap: 35px;
            }
        }
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #e74c3c, #d35400);
                padding: 60px 40px;
                gap: 35px;
                box-shadow: 0 25px 40px rgba(0,0,0,0.3);
            }
            .nav-menu.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .logo {
                font-size: 2.5rem;
            }
            h1 {
                font-size: 2.7rem;
                margin: 60px 0 45px;
            }
            h2 {
                font-size: 2.1rem;
                margin: 70px 0 30px;
                padding-left: 20px;
            }
            h3 {
                font-size: 1.8rem;
                margin: 60px 0 25px;
            }
            p {
                font-size: 1.2rem;
                line-height: 1.9;
                margin-bottom: 35px;
            }
            .btn {
                width: 100%;
                justify-content: center;
                padding: 22px 35px;
                font-size: 1.5rem;
            }
            .stat-item {
                min-width: 100%;
                margin-bottom: 30px;
            }
            .section {
                padding: 50px 30px;
            }
            .footer {
                padding: 80px 35px 60px;
            }
            .community-card {
                min-width: 100%;
            }
            .img-wrapper {
                margin: 70px 0;
            }
            .small-img, .medium-img {
                max-width: 100%;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 2.2rem;
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 1.9rem;
                padding-left: 15px;
            }
            h3 {
                font-size: 1.6rem;
            }
            .btn-container {
                gap: 30px;
            }
            .img-wrapper {
                margin: 60px 0;
            }
            .game-img {
                border-width: 6px;
            }
            .stats-box {
                padding: 35px 25px;
                gap: 30px;
            }
            .footer-section h3 {
                font-size: 2.0rem;
            }
            .genre-list a, .tag-list a {
                padding: 15px 30px;
                font-size: 1.2rem;
            }
            .recommendation {
                padding: 45px 25px;
            }
            .recommendation p {
                font-size: 1.5rem;
            }
        }
