* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Helvetica', sans-serif;
        }
        html {
            scroll-behavior: smooth;
            line-height: 1.8;
        }
        body {
            color: #2c3e50;
            background-color: #f8f9fa;
            padding-bottom: 80px;
            font-size: 16px;
        }
        .header-container {
            background-color: #1a5238;
            color: #ffffff;
            padding: 18px 20px;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }
        .nav-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.6rem;
            font-weight: 900;
            color: #f1c40f;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 0 3px 5px rgba(0,0,0,0.4);
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .logo emoji {
            font-size: 2.4rem;
        }
        .main-nav {
            display: flex;
            gap: 35px;
        }
        .main-nav a {
            color: #ecf0f1;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            padding: 8px 0;
            border-bottom: 3px solid transparent;
        }
        .main-nav a:hover {
            color: #f1c40f;
            border-bottom: 3px solid #f1c40f;
        }
        .daman-link {
            background-color: #f1c40f;
            color: #1a5238 !important;
            padding: 12px 25px;
            border-radius: 40px;
            border-bottom: none !important;
            font-weight: 700;
            box-shadow: 0 3px 8px rgba(241,196,15,0.3);
        }
        .daman-link:hover {
            background-color: #d4ac0d;
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(241,196,15,0.4);
        }
        .hamburger-btn {
            display: none;
            font-size: 2.2rem;
            cursor: pointer;
            color: #f1c40f;
            background: transparent;
            border: none;
        }
        @media (max-width: 768px) {
            .main-nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 95px;
                left: 0;
                right: 0;
                background-color: #1a5238;
                padding: 35px 25px;
                gap: 28px;
                border-top: 3px solid #f1c40f;
            }
            .main-nav.active {
                display: flex;
            }
            .hamburger-btn {
                display: block;
            }
            .logo {
                font-size: 2.2rem;
            }
            .logo emoji {
                font-size: 2rem;
            }
        }
        .container {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 25px;
        }
        h1 {
            font-size: 3.2rem;
            color: #1a5238;
            margin-bottom: 45px;
            text-align: center;
            border-bottom: 6px solid #f1c40f;
            padding-bottom: 30px;
            font-weight: 900;
            letter-spacing: 0.8px;
        }
        h2 {
            font-size: 2.4rem;
            color: #1a5238;
            margin: 80px 0 35px;
            padding-left: 30px;
            border-left: 7px solid #f1c40f;
            font-weight: 800;
        }
        h3 {
            font-size: 1.9rem;
            color: #2980b9;
            margin: 50px 0 25px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        h3 emoji {
            font-size: 1.7rem;
        }
        h4 {
            font-size: 1.6rem;
            color: #27ae60;
            margin: 40px 0 20px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.2rem;
            text-align: justify;
            line-height: 2;
        }
        .highlight {
            font-weight: 800;
            color: #e67e22;
            text-decoration: underline;
            text-underline-offset: 6px;
        }
        .keyword {
            font-weight: 900;
            color: #1a5238;
            font-size: 1.3rem;
        }
        .stats-box {
            background-color: #ffffff;
            border-radius: 20px;
            padding: 35px;
            margin: 50px 0;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            display: flex;
            flex-wrap: wrap;
            gap: 35px;
            justify-content: center;
            align-items: center;
        }
        .stat-item {
            text-align: center;
            flex: 1;
            min-width: 200px;
            padding: 20px;
            border-radius: 12px;
            background-color: #fef9e7;
        }
        .stat-value {
            font-size: 2.8rem;
            font-weight: 900;
            color: #1a5238;
            margin-bottom: 10px;
        }
        .stat-label {
            font-size: 1.1rem;
            color: #34495e;
            font-weight: 500;
        }
        .img-container {
            margin: 60px 0;
            text-align: center;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .img-caption {
            background-color: #ffffff;
            padding: 20px;
            font-size: 1.1rem;
            color: #2c3e50;
            font-style: italic;
        }
        .btn-section {
            text-align: center;
            margin: 80px 0;
            display: flex;
            justify-content: center;
            gap: 35px;
            flex-wrap: wrap;
        }
        .btn {
            padding: 22px 45px;
            font-size: 1.4rem;
            font-weight: 800;
            border: none;
            border-radius: 45px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.12);
        }
        .download-btn {
            background-color: #f1c40f;
            color: #1a5238;
        }
        .download-btn:hover {
            background-color: #d4ac0d;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(241,196,15,0.4);
        }
        .login-btn {
            background-color: #1a5238;
            color: #ffffff;
        }
        .login-btn:hover {
            background-color: #0d3a23;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(26,82,56,0.4);
        }
        ul, ol {
            margin: 35px 0 40px 60px;
            font-size: 1.2rem;
            line-height: 2.3;
        }
        ul {
            list-style-type: disc;
        }
        ol {
            list-style-type: decimal;
        }
        li {
            margin-bottom: 18px;
            padding-left: 15px;
        }
        .tab-container {
            margin: 60px 0;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        .tab-header {
            background-color: #1a5238;
            color: #ffffff;
            padding: 20px 30px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.2rem;
        }
        .tab-content {
            background-color: #ffffff;
            padding: 30px;
            display: none;
        }
        .tab-content.active {
            display: block;
        }
        .game-categories {
            background-color: #ffffff;
            border-radius: 20px;
            padding: 40px;
            margin: 80px 0 60px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        .categories-title, .tags-title {
            font-size: 1.7rem;
            color: #1a5238;
            margin-bottom: 30px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .categories-list, .tags-list {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .category-link, .tag-link {
            color: #1a5238;
            text-decoration: none;
            padding: 14px 28px;
            border-radius: 35px;
            transition: all 0.3s ease;
            font-weight: 600;
            font-size: 1.1rem;
        }
        .category-link {
            background-color: #fef9e7;
            border: 2px solid #f1c40f;
        }
        .category-link:hover {
            background-color: #1a5238;
            color: #ffffff;
            border-color: #1a5238;
        }
        .tag-link {
            background-color: #e8f5e9;
            color: #27ae60;
            border: 1px solid #f1c40f;
        }
        .tag-link:hover {
            background-color: #f1c40f;
            color: #1a5238;
            border-color: #f1c40f;
        }
        .recommendation {
            background-color: #e8f5e9;
            border-radius: 20px;
            padding: 45px;
            margin: 60px 0;
            text-align: center;
            border: 3px solid #f1c40f;
        }
        .recommendation-text {
            font-size: 1.4rem;
            color: #1a5238;
            margin-bottom: 30px;
            line-height: 2.2;
            font-weight: 500;
        }
        .copyright {
            text-align: center;
            color: #7f8c8d;
            padding: 40px 25px;
            border-top: 3px solid #f8e9a1;
            margin-top: 80px;
            font-size: 1.1rem;
            background-color: #ffffff;
            border-radius: 20px 20px 0 0;
        }
        <script type="application/ld+json">
        {
            "@context": "https://schema.org",
            "@type": "Game",
            "name": "Leafy Saga Warriors",
            "description": "Leafy Saga Warriors is India's leading fantasy-adventure mobile RPG, offering 18+ regional languages, desi festive events, and authentic Indian mythological & fantasy experiences for gamers across the country.",
            "gameGenre": "Action, Adventure, Fantasy, Role-Playing (RPG), Mobile Game, Indian Localized Game",
            "publisher": {
                "@type": "Organization",
                "name": "Daman Games",
                "url": "https://www.damangames.center"
            },
            "platform": "Android, iOS",
            "keywords": "Leafy Saga Warriors, Indian fantasy adventure game, Daman Games, desi gaming, mobile RPG India, fantasy adventure game",
            "aggregateRating": {
                "@type": "AggregateRating",
                "ratingValue": "4.9",
                "reviewCount": "4.2M"
            },
            "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"
        }
