* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Helvetica', sans-serif;
            line-height: 1.8;
        }
        body {
            background-color: #f5f8f0;
            color: #2d3436;
            padding-bottom: 80px;
            background-image: linear-gradient(to bottom, #fafcf4 0%, #e8f0e0 100%);
        }
        .container {
            max-width: 1350px;
            margin: 0 auto;
            padding: 0 25px;
        }
        header {
            background-color: #2ecc71;
            color: #ffffff;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 12px rgba(0,0,0,0.18);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.4rem;
            font-weight: 900;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            text-shadow: 0 3px 4px rgba(0,0,0,0.25);
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .logo span {
            color: #d4edda;
            font-size: 1.6rem;
            text-transform: capitalize;
        }
        .nav-links {
            display: flex;
            gap: 35px;
            align-items: center;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            position: relative;
        }
        .nav-links a:hover {
            color: #d4edda;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            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: #2ecc71 !important;
            padding: 10px 22px;
            border-radius: 35px;
            font-weight: 700;
            box-shadow: 0 4px 8px rgba(0,0,0,0.12);
        }
        .daman-link:hover {
            background-color: #d4edda;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.18);
        }
        .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: 85px;
                left: 0;
                right: 0;
                background-color: #2ecc71;
                padding: 30px;
                gap: 25px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.15);
                border-top: 1px solid rgba(255,255,255,0.15);
            }
            .nav-links.active {
                display: flex;
            }
            .menu-btn {
                display: block;
            }
            .logo {
                font-size: 1.8rem;
            }
            .logo span {
                font-size: 1.4rem;
            }
        }
        .btn {
            display: inline-block;
            padding: 16px 42px;
            border-radius: 40px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            margin: 15px 10px;
            font-size: 1.15rem;
            text-align: center;
            box-shadow: 0 5px 10px rgba(0,0,0,0.15);
            border: none;
            cursor: pointer;
        }
        .btn-download {
            background-color: #27ae60;
            color: white;
            background-image: linear-gradient(135deg, #27ae60 0%, #d4edda 100%);
        }
        .btn-download:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
            background-image: linear-gradient(135deg, #219653 0%, #27ae60 100%);
        }
        .btn-login {
            background-color: #3498db;
            color: white;
            background-image: linear-gradient(135deg, #3498db 0%, #90caf9 100%);
        }
        .btn-login:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
            background-image: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
        }
        h1 {
            font-size: 3.2rem;
            color: #27ae60;
            margin: 60px 0 40px;
            text-align: center;
            font-weight: 900;
            border-bottom: 5px solid #d4edda;
            padding-bottom: 25px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.12);
        }
        h2 {
            font-size: 2.5rem;
            color: #27ae60;
            margin: 70px 0 30px;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 18px;
            border-left: 6px solid #d4edda;
            padding-left: 20px;
        }
        h2::before {
            content: "🌿";
            font-size: 2.2rem;
        }
        h3 {
            font-size: 1.9rem;
            color: #16a085;
            margin: 50px 0 25px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        h3::before {
            content: "🌳";
            font-size: 1.7rem;
        }
        h4 {
            font-size: 1.5rem;
            color: #2d3436;
            margin: 35px 0 20px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        h4::before {
            content: "🍃";
            font-size: 1.3rem;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            text-align: justify;
            color: #34495e;
            line-height: 1.9;
        }
        .highlight {
            font-weight: 800;
            color: #27ae60;
            font-size: 1.25rem;
        }
        .desi-note {
            background-color: #e8f5e9;
            border-left: 6px solid #d4edda;
            padding: 25px;
            margin: 40px 0;
            border-radius: 0 12px 12px 0;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        .desi-note p {
            margin-bottom: 0;
            font-style: italic;
            color: #2d3436;
            font-size: 1.2rem;
        }
        .desi-note strong {
            color: #27ae60;
            font-weight: 800;
        }
        .game-img {
            width: 100%;
            max-width: 950px;
            height: auto;
            border-radius: 15px;
            margin: 50px auto;
            display: block;
            box-shadow: 0 10px 25px rgba(0,0,0,0.18);
            border: 4px solid #ffffff;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 50px 0;
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 6px 18px rgba(0,0,0,0.12);
        }
        .stats-table th, .stats-table td {
            padding: 22px;
            text-align: left;
            border-bottom: 1px solid #e0e0e0;
        }
        .stats-table th {
            background-color: #27ae60;
            color: white;
            font-weight: 700;
            font-size: 1.1rem;
        }
        .stats-table tr:hover {
            background-color: #f8f9fa;
            transform: scale(1.005);
            transition: all 0.3s ease;
        }
        .stats-table tr:last-child td {
            border-bottom: none;
        }
        ul, ol {
            margin: 30px 0 30px 50px;
        }
        li {
            margin-bottom: 20px;
            font-size: 1.15rem;
            color: #34495e;
            line-height: 1.9;
        }
        li strong {
            color: #27ae60;
            font-weight: 700;
        }
        .section {
            background-color: white;
            border-radius: 20px;
            padding: 50px;
            margin-bottom: 50px;
            box-shadow: 0 8px 22px rgba(0,0,0,0.08);
            border: 1px solid #f0f5f0;
        }
        .cta-section {
            text-align: center;
            background-color: #f0f7f0;
            padding: 60px 25px;
            border-radius: 20px;
            margin: 80px 0;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border: 1px solid #d4edda;
        }
        .cta-section h3 {
            margin-bottom: 40px;
            color: #27ae60;
            font-size: 2.1rem;
            justify-content: center;
            text-shadow: 0 2px 3px rgba(0,0,0,0.1);
        }
        footer {
            background-color: #27ae60;
            color: white;
            padding: 70px 0 40px;
            margin-top: 100px;
            border-top-left-radius: 25px;
            border-top-right-radius: 25px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }
        .footer-column h4 {
            font-size: 1.6rem;
            margin-bottom: 30px;
            color: #d4edda;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            border-bottom: 3px solid #d4edda;
            padding-bottom: 10px;
            display: block;
        }
        .footer-column h4::before {
            display: none;
        }
        .footer-column a {
            color: #f0f7ff;
            text-decoration: none;
            display: block;
            margin-bottom: 15px;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }
        .footer-column a:hover {
            color: #d4edda;
            padding-left: 8px;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 25px;
        }
        .tag {
            background-color: #16a085;
            padding: 10px 20px;
            border-radius: 35px;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-block;
        }
        .tag:hover {
            background-color: #d4edda;
            color: #27ae60 !important;
            transform: translateY(-3px);
        }
        .game-types {
            margin: 40px 0;
        }
        .game-types h4 {
            margin-bottom: 22px;
        }
        .recommendation {
            background-color: #f5f9f5;
            padding: 30px;
            border-radius: 15px;
            margin: 40px 0;
            text-align: center;
            color: #2d3436;
            font-size: 1.2rem;
            line-height: 2;
        }
        .recommendation strong {
            color: #27ae60;
            font-weight: 800;
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.15);
            font-size: 1.05rem;
            color: #e3f2fd;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
                margin: 50px 0 35px;
                padding-bottom: 20px;
            }
            h2 {
                font-size: 2.1rem;
                margin: 60px 0 25px;
                gap: 15px;
            }
            h3 {
                font-size: 1.7rem;
                margin: 45px 0 22px;
            }
            h4 {
                font-size: 1.4rem;
                margin: 32px 0 18px;
            }
            p, li {
                font-size: 1.1rem;
            }
            .section {
                padding: 35px;
                margin-bottom: 45px;
            }
            .cta-section {
                padding: 45px 20px;
                margin: 65px 0;
            }
            .btn {
                padding: 14px 32px;
                font-size: 1.05rem;
                margin: 10px 8px;
                width: 100%;
                max-width: 320px;
            }
            .stats-table th, .stats-table td {
                padding: 16px;
                font-size: 1rem;
            }
            ul, ol {
                margin: 25px 0 25px 35px;
            }
            .desi-note {
                padding: 22px;
                margin: 35px 0;
            }
            .game-img {
                margin: 35px auto;
                border-radius: 10px;
            }
            .footer-container {
                gap: 40px;
            }
            .footer-column {
                text-align: center;
            }
            .tags {
                justify-content: center;
            }
        }
        ::-webkit-scrollbar {
            width: 12px;
        }
        ::-webkit-scrollbar-track {
            background: #f8f9fa;
        }
        ::-webkit-scrollbar-thumb {
            background: #27ae60;
            border-radius: 8px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #16a085;
        }
        html {
            scroll-behavior: smooth;
        }
        .internal-link {
            color: #2980b9;
            font-weight: 600;
            text-decoration: underline;
            text-underline-offset: 4px;
            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: 6px 15px;
            border-radius: 20px;
            margin-right: 10px;
            margin-bottom: 10px;
            font-size: 1rem;
            font-weight: 600;
        }
        [data-seo="keyword"] {
            font-weight: 700;
            color: #27ae60;
        }
        .seo-heading {
            margin-top: 70px;
            border-bottom: 3px solid #d4edda;
            padding-bottom: 12px;
        }
