* {
            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: #faf6ed;
            color: #2c3e50;
            line-height: 1.9;
            font-size: 16px;
            padding-bottom: 80px;
            letter-spacing: 0.3px;
        }
        .header {
            background: linear-gradient(135deg, #e67e22, #d35400);
            padding: 20px 25px;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 6px 20px rgba(0,0,0,0.18);
        }
        .nav-container {
            max-width: 1450px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.8rem;
            font-weight: 900;
            color: #ffffff;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.25);
            text-decoration: none;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            text-transform: uppercase;
            gap: 10px;
        }
        .logo span {
            color: #ffdf5d;
            font-style: italic;
        }
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-menu li a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.15rem;
            transition: all 0.3s ease;
            padding: 10px 0;
            border-bottom: 4px solid transparent;
        }
        .nav-menu li a:hover {
            color: #ffdf5d;
            border-bottom: 4px solid #ffdf5d;
        }
        .daman-link {
            background-color: #ffdf5d;
            color: #2c3e50 !important;
            padding: 12px 25px;
            border-radius: 35px;
            font-weight: 700;
            border-bottom: none !important;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
        .daman-link:hover {
            background-color: #ffffff;
            transform: translateY(-4px);
            box-shadow: 0 6px 18px rgba(0,0,0,0.25);
        }
        .hamburger {
            display: none;
            font-size: 2.5rem;
            color: #ffffff;
            cursor: pointer;
            background: transparent;
            border: none;
            z-index: 10000;
        }
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        h1 {
            font-size: 3.2rem;
            color: #d35400;
            margin: 50px 0 40px;
            text-align: center;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
            font-weight: 900;
            line-height: 1.5;
        }
        h2 {
            font-size: 2.4rem;
            color: #e67e22;
            margin: 80px 0 35px;
            border-left: 8px solid #d35400;
            padding-left: 25px;
            font-weight: 800;
            line-height: 1.6;
        }
        h3 {
            font-size: 1.9rem;
            color: #3498db;
            margin: 60px 0 25px;
            font-weight: 700;
            display: flex;
            align-items: center;
            line-height: 1.7;
        }
        h3::before {
            content: "🔥";
            margin-right: 15px;
        }
        h4 {
            font-size: 1.5rem;
            color: #27ae60;
            margin: 45px 0 20px;
            font-weight: 600;
            line-height: 1.7;
        }
        p {
            margin-bottom: 30px;
            font-size: 1.15rem;
            line-height: 1.9;
            text-align: justify;
            padding: 0 5px;
        }
        .highlight {
            font-weight: 900;
            color: #d35400;
            font-size: 1.2rem;
        }
        .key-term {
            font-weight: 800;
            color: #27ae60;
            text-decoration: underline;
            text-underline-offset: 5px;
        }
        .stats-box {
            background-color: #ffffff;
            border-radius: 20px;
            padding: 40px;
            margin: 50px 0;
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }
        .stat-item {
            flex: 1;
            min-width: 220px;
            text-align: center;
            padding: 25px;
            border-radius: 15px;
            background-color: #fef9f3;
            border: 2px solid #f39c12;
        }
        .stat-item h4 {
            color: #3498db;
            margin-bottom: 15px;
            font-size: 1.3rem;
            margin-top: 0;
        }
        .stat-item p {
            font-size: 2.8rem;
            font-weight: 900;
            color: #e67e22;
            margin: 0;
            line-height: 1.5;
        }
        .img-wrapper {
            text-align: center;
            margin: 60px 0;
        }
        .game-img {
            width: 100%;
            max-width: 1100px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.18);
            margin: 0 auto;
            border: 5px solid #e67e22;
        }
        .btn-container {
            display: flex;
            gap: 30px;
            justify-content: center;
            margin: 70px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 20px 40px;
            border-radius: 40px;
            font-size: 1.4rem;
            font-weight: 800;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 8px 22px rgba(0,0,0,0.2);
            display: inline-flex;
            align-items: center;
            gap: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .download-btn {
            background-color: #e67e22;
            color: #ffffff;
        }
        .download-btn:hover {
            background-color: #d35400;
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.3);
        }
        .login-btn {
            background-color: #3498db;
            color: #ffffff;
        }
        .login-btn:hover {
            background-color: #2980b9;
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.3);
        }
        .guide-list, .event-list, .tag-list, .genre-list {
            list-style: none;
            margin: 40px 0;
        }
        .guide-list li, .event-list li {
            background-color: #ffffff;
            border-left: 7px solid #e67e22;
            padding: 22px 30px;
            margin-bottom: 25px;
            border-radius: 0 15px 15px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            font-size: 1.15rem;
            line-height: 2.0;
        }
        .guide-list li::before {
            content: "🎯";
            margin-right: 15px;
            color: #d35400;
        }
        .event-list li::before {
            content: "🎉";
            margin-right: 15px;
            color: #e67e22;
        }
        .community-list li {
            background-color: #fef9f3;
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            border-top: 5px solid #3498db;
        }
        .community-list li strong {
            color: #d35400;
            font-size: 1.2rem;
        }
        .section {
            background-color: #ffffff;
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 60px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.07);
        }
        .community-cards {
            display: flex;
            flex-wrap: wrap;
            gap: 35px;
            margin: 50px 0;
        }
        .community-card {
            flex: 1;
            min-width: 300px;
            background-color: #fef9f3;
            border-radius: 20px;
            padding: 35px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.09);
            text-align: center;
            border-top: 6px solid #e67e22;
        }
        .community-card i {
            font-size: 4rem;
            color: #3498db;
            margin-bottom: 25px;
            display: block;
        }
        .community-card h4 {
            color: #2c3e50;
            margin-bottom: 20px;
            margin-top: 0;
        }
        .community-card p {
            color: #7f8c8d;
            margin-bottom: 30px;
            text-align: center;
        }
        .community-card a {
            color: #e67e22;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.2rem;
            border-bottom: 2px solid transparent;
        }
        .community-card a:hover {
            color: #d35400;
            border-bottom: 2px solid #d35400;
        }
        .footer {
            background-color: #2c3e50;
            color: #ffffff;
            padding: 80px 30px 50px;
            margin-top: 120px;
            border-top-left-radius: 30px;
            border-top-right-radius: 30px;
        }
        .footer-container {
            max-width: 1300px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 60px;
        }
        .footer-section h3 {
            color: #ffdf5d;
            margin-bottom: 35px;
            font-size: 1.8rem;
            border-bottom: 4px solid #3498db;
            padding-bottom: 15px;
            display: inline-block;
            margin-top: 0;
        }
        .genre-list, .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .genre-list li, .tag-list li {
            margin-bottom: 20px;
        }
        .genre-list a, .tag-list a {
            color: #ffffff;
            background-color: #34495e;
            padding: 12px 25px;
            border-radius: 30px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            font-weight: 600;
        }
        .genre-list a:hover, .tag-list a:hover {
            background-color: #e67e22;
            transform: translateY(-4px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .recommendation {
            background-color: #34495e;
            border-radius: 20px;
            padding: 40px;
            margin: 60px 0;
            text-align: center;
            border: 3px solid #ffdf5d;
        }
        .recommendation p {
            font-size: 1.4rem;
            color: #ffffff;
            margin: 0;
            line-height: 2.2;
            text-align: center;
        }
        .recommendation span {
            color: #ffdf5d;
            font-weight: 800;
        }
        .copyright {
            text-align: center;
            color: #bdc3c7;
            font-size: 1.1rem;
            padding-top: 50px;
            border-top: 3px solid #34495e;
            margin-top: 60px;
            line-height: 1.8;
        }
        @media (max-width: 1200px) {
            .nav-menu {
                gap: 25px;
            }
            h1 {
                font-size: 2.8rem;
            }
            h2 {
                font-size: 2.2rem;
            }
            h3 {
                font-size: 1.7rem;
            }
            .stat-item {
                min-width: 190px;
            }
        }
        @media (max-width: 992px) {
            .nav-menu {
                gap: 20px;
            }
            .logo {
                font-size: 2.5rem;
            }
            h1 {
                font-size: 2.6rem;
            }
            h2 {
                font-size: 2.0rem;
                margin: 70px 0 30px;
                padding-left: 20px;
            }
            h3 {
                font-size: 1.6rem;
            }
            .btn {
                padding: 18px 35px;
                font-size: 1.3rem;
            }
        }
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #e67e22, #d35400);
                padding: 40px 30px;
                gap: 25px;
                box-shadow: 0 15px 25px rgba(0,0,0,0.2);
            }
            .nav-menu.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .logo {
                font-size: 2.2rem;
            }
            h1 {
                font-size: 2.4rem;
                margin: 45px 0 35px;
            }
            h2 {
                font-size: 1.8rem;
                margin: 60px 0 25px;
                padding-left: 15px;
            }
            h3 {
                font-size: 1.5rem;
                margin: 50px 0 20px;
            }
            p {
                font-size: 1.1rem;
                line-height: 1.8;
                margin-bottom: 25px;
            }
            .btn {
                width: 100%;
                justify-content: center;
                padding: 18px 25px;
                font-size: 1.3rem;
            }
            .stat-item {
                min-width: 100%;
                margin-bottom: 20px;
            }
            .section {
                padding: 35px 25px;
            }
            .footer {
                padding: 60px 25px 40px;
            }
            .community-card {
                min-width: 100%;
            }
            .img-wrapper {
                margin: 50px 0;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 2.0rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.6rem;
                padding-left: 12px;
            }
            h3 {
                font-size: 1.4rem;
            }
            .btn-container {
                gap: 20px;
            }
            .img-wrapper {
                margin: 40px 0;
            }
            .game-img {
                border-width: 4px;
            }
            .stats-box {
                padding: 30px 20px;
                gap: 20px;
            }
            .footer-section h3 {
                font-size: 1.6rem;
            }
            .genre-list a, .tag-list a {
                padding: 10px 20px;
                font-size: 1.05rem;
            }
        }
