* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Helvetica', sans-serif;
            line-height: 1.8;
        }
        body {
            background-color: #faf6ed;
            color: #2c3e50;
            padding-bottom: 80px;
            background-image: linear-gradient(to bottom, #f9f3e7 0%, #f0e6d2 100%);
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #27ae60;
            color: #ffffff;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: 900;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 0 3px 5px rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo span {
            color: #e8f5e9;
            font-size: 1.7rem;
            text-transform: capitalize;
        }
        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1.05rem;
            position: relative;
            padding: 5px 0;
        }
        .nav-links a:hover {
            color: #d4edda;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #d4edda;
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .daman-link {
            background-color: #ffffff;
            color: #27ae60 !important;
            padding: 9px 20px;
            border-radius: 30px;
            font-weight: 700;
            box-shadow: 0 3px 8px rgba(0,0,0,0.1);
        }
        .daman-link:hover {
            background-color: #d4edda;
            transform: translateY(-2px);
            box-shadow: 0 5px 12px rgba(0,0,0,0.15);
        }
        .daman-link::after {
            display: none;
        }
        .menu-btn {
            display: none;
            background: none;
            border: none;
            color: #ffffff;
            font-size: 2rem;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .menu-btn:hover {
            color: #d4edda;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 75px;
                left: 0;
                right: 0;
                background-color: #27ae60;
                padding: 25px;
                gap: 20px;
                box-shadow: 0 8px 15px rgba(0,0,0,0.12);
                border-top: 1px solid rgba(255,255,255,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .menu-btn {
                display: block;
            }
            .logo {
                font-size: 1.9rem;
            }
            .logo span {
                font-size: 1.4rem;
            }
        }
        .btn {
            display: inline-block;
            padding: 14px 38px;
            border-radius: 35px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            margin: 12px 8px;
            font-size: 1.1rem;
            text-align: center;
            box-shadow: 0 4px 9px rgba(0,0,0,0.14);
            border: none;
            cursor: pointer;
        }
        .btn-download {
            background-color: #219653;
            color: white;
            background-image: linear-gradient(135deg, #219653 0%, #4ade80 100%);
        }
        .btn-download:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(0,0,0,0.18);
            background-image: linear-gradient(135deg, #166534 0%, #219653 100%);
        }
        .btn-login {
            background-color: #2563eb;
            color: white;
            background-image: linear-gradient(135deg, #2563eb 0%, #93c5fd 100%);
        }
        .btn-login:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(0,0,0,0.18);
            background-image: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
        }
        h1 {
            font-size: 3rem;
            color: #27ae60;
            margin: 50px 0 35px;
            text-align: center;
            font-weight: 900;
            border-bottom: 4px solid #e8f5e9;
            padding-bottom: 20px;
            text-shadow: 0 2px 3px rgba(0,0,0,0.1);
        }
        h2 {
            font-size: 2.3rem;
            color: #27ae60;
            margin: 60px 0 25px;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 15px;
            border-left: 5px solid #e8f5e9;
            padding-left: 18px;
        }
        h2::before {
            content: "🌿";
            font-size: 2rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #16a085;
            margin: 45px 0 22px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        h3::before {
            content: "🌳";
            font-size: 1.6rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #2c3e50;
            margin: 30px 0 18px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        h4::before {
            content: "🍃";
            font-size: 1.2rem;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
            color: #34495e;
            line-height: 1.85;
        }
        .highlight {
            font-weight: 800;
            color: #27ae60;
            font-size: 1.2rem;
        }
        .desi-note {
            background-color: #f0fdf4;
            border-left: 5px solid #d4edda;
            padding: 22px;
            margin: 35px 0;
            border-radius: 0 10px 10px 0;
            box-shadow: 0 3px 8px rgba(0,0,0,0.08);
        }
        .desi-note p {
            margin-bottom: 0;
            font-style: italic;
            color: #2c3e50;
            font-size: 1.15rem;
        }
        .desi-note strong {
            color: #27ae60;
            font-weight: 800;
        }
        .game-img {
            width: 100%;
            max-width: 1000px;
            height: auto;
            border-radius: 12px;
            margin: 40px auto;
            display: block;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border: 3px solid #ffffff;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .stats-table th, .stats-table td {
            padding: 18px;
            text-align: left;
            border-bottom: 1px solid #f1f1f1;
        }
        .stats-table th {
            background-color: #27ae60;
            color: white;
            font-weight: 700;
            font-size: 1.05rem;
        }
        .stats-table tr:hover {
            background-color: #f8f9fa;
            transform: scale(1.003);
            transition: all 0.3s ease;
        }
        .stats-table tr:last-child td {
            border-bottom: none;
        }
        ul, ol {
            margin: 25px 0 25px 45px;
        }
        li {
            margin-bottom: 18px;
            font-size: 1.08rem;
            color: #34495e;
            line-height: 1.8;
        }
        li strong {
            color: #27ae60;
            font-weight: 700;
        }
        .section {
            background-color: white;
            border-radius: 18px;
            padding: 45px;
            margin-bottom: 45px;
            box-shadow: 0 7px 18px rgba(0,0,0,0.07);
            border: 1px solid #f5f0e6;
        }
        .cta-section {
            text-align: center;
            background-color: #f5fafe;
            padding: 50px 20px;
            border-radius: 18px;
            margin: 60px 0;
            box-shadow: 0 8px 20px rgba(0,0,0,0.09);
            border: 1px solid #d4edda;
        }
        .cta-section h3 {
            margin-bottom: 35px;
            color: #27ae60;
            font-size: 2rem;
            justify-content: center;
            text-shadow: 0 2px 3px rgba(0,0,0,0.08);
        }
        footer {
            background-color: #27ae60;
            color: white;
            padding: 60px 0 30px;
            margin-top: 80px;
            border-top-left-radius: 20px;
            border-top-right-radius: 20px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-column h4 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: #d4edda;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-bottom: 2px solid #d4edda;
            padding-bottom: 8px;
            display: block;
        }
        .footer-column h4::before {
            display: none;
        }
        .footer-column a {
            color: #f8f9fa;
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }
        .footer-column a:hover {
            color: #d4edda;
            padding-left: 7px;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 20px;
        }
        .tag {
            background-color: #16a085;
            padding: 8px 18px;
            border-radius: 30px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            display: inline-block;
        }
        .tag:hover {
            background-color: #d4edda;
            color: #27ae60 !important;
            transform: translateY(-2px);
        }
        .game-types {
            margin: 35px 0;
        }
        .game-types h4 {
            margin-bottom: 20px;
        }
        .recommendation {
            background-color: #f8f9fa;
            padding: 25px;
            border-radius: 12px;
            margin: 35px 0;
            text-align: center;
            color: #2c3e50;
            font-size: 1.15rem;
            line-height: 1.9;
        }
        .recommendation strong {
            color: #27ae60;
            font-weight: 800;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 1rem;
            color: #e8f5e9;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.3rem;
                margin: 40px 0 30px;
                padding-bottom: 15px;
            }
            h2 {
                font-size: 1.9rem;
                margin: 50px 0 22px;
                gap: 12px;
            }
            h3 {
                font-size: 1.6rem;
                margin: 40px 0 20px;
            }
            h4 {
                font-size: 1.3rem;
                margin: 28px 0 16px;
            }
            p, li {
                font-size: 1.05rem;
            }
            .section {
                padding: 30px;
                margin-bottom: 40px;
            }
            .cta-section {
                padding: 40px 15px;
                margin: 50px 0;
            }
            .btn {
                padding: 12px 28px;
                font-size: 1rem;
                margin: 8px 5px;
                width: 100%;
                max-width: 280px;
            }
            .stats-table th, .stats-table td {
                padding: 14px;
                font-size: 0.95rem;
            }
            ul, ol {
                margin: 20px 0 20px 30px;
            }
            .desi-note {
                padding: 20px;
                margin: 30px 0;
            }
            .game-img {
                margin: 30px auto;
                border-radius: 8px;
            }
            .footer-container {
                gap: 35px;
            }
            .footer-column {
                text-align: center;
            }
            .tags {
                justify-content: center;
            }
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #f8f5f0;
        }
        ::-webkit-scrollbar-thumb {
            background: #27ae60;
            border-radius: 6px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #16a085;
        }
        html {
            scroll-behavior: smooth;
        }
        .internal-link {
            color: #2563eb;
            font-weight: 600;
            text-decoration: underline;
            text-underline-offset: 3px;
            transition: color 0.3s ease;
        }
        .internal-link:hover {
            color: #27ae60;
            text-decoration: none;
        }
        .desi-accent {
            font-family: 'Arial Rounded MT Bold', sans-serif;
            color: #27ae60;
            font-weight: 700;
        }
        .jungle-badge {
            display: inline-block;
            background-color: #d4edda;
            color: #16a085;
            padding: 5px 12px;
            border-radius: 18px;
            margin-right: 8px;
            margin-bottom: 8px;
            font-size: 0.95rem;
            font-weight: 600;
        }
        [data-seo="keyword"] {
            font-weight: 700;
            color: #27ae60;
        }
        .seo-heading {
            margin-top: 60px;
            border-bottom: 2px solid #d4edda;
            padding-bottom: 10px;
        }
