* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Helvetica', sans-serif;
        }
        html {
            scroll-behavior: smooth;
            line-height: 1.7;
        }
        body {
            color: #2d3748;
            background-color: #f0f7f0;
            padding-bottom: 80px;
            font-size: 16px;
        }
        .header-container {
            background-color: #2e7d32;
            color: #ffffff;
            padding: 15px 20px;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 3px 12px rgba(0,0,0,0.2);
        }
        .nav-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: #81c784;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .logo emoji {
            font-size: 2rem;
        }
        .main-nav {
            display: flex;
            gap: 35px;
        }
        .main-nav a {
            color: #f8f9fa;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            padding: 6px 0;
            border-bottom: 3px solid transparent;
        }
        .main-nav a:hover {
            color: #81c784;
            border-bottom: 3px solid #81c784;
        }
        .daman-link {
            background-color: #81c784;
            color: #2e7d32 !important;
            padding: 10px 22px;
            border-radius: 35px;
            border-bottom: none !important;
            font-weight: 700;
            box-shadow: 0 2px 6px rgba(129,199,132,0.2);
        }
        .daman-link:hover {
            background-color: #66bb6a;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(129,199,132,0.3);
        }
        .hamburger-btn {
            display: none;
            font-size: 2rem;
            cursor: pointer;
            color: #81c784;
            background: transparent;
            border: none;
        }
        @media (max-width: 768px) {
            .main-nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 85px;
                left: 0;
                right: 0;
                background-color: #2e7d32;
                padding: 30px 25px;
                gap: 25px;
                border-top: 2px solid #81c784;
            }
            .main-nav.active {
                display: flex;
            }
            .hamburger-btn {
                display: block;
            }
            .logo {
                font-size: 1.8rem;
            }
            .logo emoji {
                font-size: 1.6rem;
            }
        }
        .container {
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 25px;
        }
        h1 {
            font-size: 2.8rem;
            color: #2e7d32;
            margin-bottom: 40px;
            text-align: center;
            border-bottom: 5px solid #81c784;
            padding-bottom: 25px;
            font-weight: 900;
            letter-spacing: 0.5px;
        }
        h2 {
            font-size: 2.2rem;
            color: #2e7d32;
            margin: 70px 0 30px;
            padding-left: 25px;
            border-left: 6px solid #81c784;
            font-weight: 800;
        }
        h3 {
            font-size: 1.7rem;
            color: #2c5f2d;
            margin: 45px 0 20px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        h3 emoji {
            font-size: 1.5rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #388e3c;
            margin: 35px 0 18px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            text-align: justify;
            line-height: 1.9;
        }
        .highlight {
            font-weight: 800;
            color: #388e3c;
            text-decoration: underline;
            text-underline-offset: 5px;
        }
        .keyword {
            font-weight: 900;
            color: #2e7d32;
            font-size: 1.2rem;
        }
        .stats-box {
            background-color: #ffffff;
            border-radius: 15px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 5px 18px rgba(0,0,0,0.07);
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
            align-items: center;
        }
        .stat-item {
            text-align: center;
            flex: 1;
            min-width: 180px;
            padding: 15px;
            border-radius: 10px;
            background-color: #f5fafe;
        }
        .stat-value {
            font-size: 2.5rem;
            font-weight: 900;
            color: #2e7d32;
            margin-bottom: 8px;
        }
        .stat-label {
            font-size: 1.05rem;
            color: #64748b;
            font-weight: 500;
        }
        .img-container {
            margin: 50px 0;
            text-align: center;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 22px rgba(0,0,0,0.12);
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .img-caption {
            background-color: #ffffff;
            padding: 15px;
            font-size: 1rem;
            color: #475569;
            font-style: italic;
        }
        .btn-section {
            text-align: center;
            margin: 70px 0;
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        .btn {
            padding: 20px 40px;
            font-size: 1.3rem;
            font-weight: 800;
            border: none;
            border-radius: 40px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .download-btn {
            background-color: #81c784;
            color: #2e7d32;
        }
        .download-btn:hover {
            background-color: #66bb6a;
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(129,199,132,0.3);
        }
        .login-btn {
            background-color: #2e7d32;
            color: #ffffff;
        }
        .login-btn:hover {
            background-color: #1b5e20;
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(46,125,50,0.3);
        }
        ul, ol {
            margin: 30px 0 35px 50px;
            font-size: 1.15rem;
            line-height: 2.2;
        }
        ul {
            list-style-type: disc;
        }
        ol {
            list-style-type: decimal;
        }
        li {
            margin-bottom: 15px;
            padding-left: 12px;
        }
        .tab-container {
            margin: 50px 0;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 18px rgba(0,0,0,0.07);
        }
        .tab-header {
            background-color: #2e7d32;
            color: #ffffff;
            padding: 18px 25px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.1rem;
        }
        .tab-content {
            background-color: #ffffff;
            padding: 25px;
            display: none;
        }
        .tab-content.active {
            display: block;
        }
        .game-categories {
            background-color: #ffffff;
            border-radius: 15px;
            padding: 35px;
            margin: 70px 0 50px;
            box-shadow: 0 5px 18px rgba(0,0,0,0.07);
        }
        .categories-title, .tags-title {
            font-size: 1.6rem;
            color: #2e7d32;
            margin-bottom: 25px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .categories-list, .tags-list {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
        }
        .category-link, .tag-link {
            color: #2e7d32;
            text-decoration: none;
            padding: 12px 24px;
            border-radius: 30px;
            transition: all 0.3s ease;
            font-weight: 600;
            font-size: 1.05rem;
        }
        .category-link {
            background-color: #f5fafe;
            border: 2px solid #81c784;
        }
        .category-link:hover {
            background-color: #2e7d32;
            color: #ffffff;
            border-color: #2e7d32;
        }
        .tag-link {
            background-color: #e8f5e9;
            color: #388e3c;
            border: 1px solid #81c784;
        }
        .tag-link:hover {
            background-color: #81c784;
            color: #ffffff;
            border-color: #81c784;
        }
        .recommendation {
            background-color: #e8f5e9;
            border-radius: 15px;
            padding: 40px;
            margin: 50px 0;
            text-align: center;
            border: 2px solid #81c784;
        }
        .recommendation-text {
            font-size: 1.3rem;
            color: #2e7d32;
            margin-bottom: 25px;
            line-height: 2;
            font-weight: 500;
        }
        .copyright {
            text-align: center;
            color: #64748b;
            padding: 35px 25px;
            border-top: 2px solid #d4edda;
            margin-top: 70px;
            font-size: 1rem;
            background-color: #ffffff;
            border-radius: 15px 15px 0 0;
        }
        <script type="application/ld+json">
        {
            "@context": "https://schema.org",
            "@type": "Game",
            "name": "Leafy Saga Explorers",
            "description": "Leafy Saga Explorers is India's leading nature-adventure mobile game, offering 13+ regional languages, desi festive events, and authentic Indian wildlife & landscape experiences for gamers across the country.",
            "gameGenre": "Adventure, Nature Exploration, Strategy, Mobile Game, Simulation",
            "publisher": {
                "@type": "Organization",
                "name": "Daman Games",
                "url": "https://www.damangames.center"
            },
            "platform": "Android, iOS",
            "keywords": "Leafy Saga Explorers, Indian nature adventure game, Daman Games, desi gaming, mobile adventure game India, nature exploration game",
            "aggregateRating": {
                "@type": "AggregateRating",
                "ratingValue": "4.9",
                "reviewCount": "3,200,000"
            },
            "offers": {
                "@type": "Offer",
                "url": "https://down.com",
                "price": "0",
                "priceCurrency": "INR",
                "availability": "https://schema.org/InStock"
            },
            "downloadUrl": "https://down.com",
            "loginUrl": "https://login.com",
            "operatingSystem": "Android, iOS",
            "gamePlatform": "Mobile Devices"
        }
