* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f5f5f5;
            color: #2d3748;
            line-height: 1.8;
            padding-bottom: 80px;
        }
        .header {
            background: linear-gradient(135deg, #2e7d32, #43a047);
            color: white;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        }
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 32px;
            font-weight: 900;
            text-decoration: none;
            color: #ffffff;
            letter-spacing: 1px;
            text-shadow: 0 3px 6px rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo span {
            color: #ffca28;
        }
        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 18px;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 8px 12px;
            border-radius: 8px;
        }
        .nav-links a:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        .nav-links .daman-link {
            background-color: #ffca28;
            color: #2d3748;
            padding: 12px 22px;
            border-radius: 10px;
            font-weight: 700;
        }
        .nav-links .daman-link:hover {
            background-color: #ffb300;
            transform: translateY(-3px);
        }
        .hamburger {
            display: none;
            font-size: 32px;
            cursor: pointer;
            color: white;
            background-color: #1b5e20;
            padding: 10px 18px;
            border-radius: 10px;
            z-index: 10000;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #2e7d32, #43a047);
                padding: 35px 25px;
                gap: 25px;
                box-shadow: 0 15px 20px rgba(0,0,0,0.18);
                border-radius: 0 0 25px 25px;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .logo {
                font-size: 26px;
            }
        }
        .container {
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 25px;
        }
        h1 {
            font-size: 42px;
            color: #2e7d32;
            text-align: center;
            margin-bottom: 60px;
            padding-bottom: 25px;
            border-bottom: 5px solid #ffca28;
            font-weight: 900;
            letter-spacing: 1px;
        }
        h2 {
            font-size: 30px;
            color: #1b5e20;
            margin: 70px 0 30px;
            padding-left: 25px;
            border-left: 6px solid #ffca28;
            font-weight: 800;
        }
        h3 {
            font-size: 24px;
            color: #388e3c;
            margin: 50px 0 25px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        h3::before {
            content: "🏰";
            font-size: 28px;
        }
        h4 {
            font-size: 20px;
            color: #2d3748;
            margin: 35px 0 20px;
            font-weight: 700;
        }
        p {
            margin-bottom: 25px;
            font-size: 18px;
            text-align: justify;
            color: #4a5568;
        }
        .highlight {
            font-weight: 800;
            color: #d32f2f;
            font-size: 19px;
        }
        .sambhar-game {
            font-weight: 900;
            color: #2e7d32;
            font-size: 19px;
            text-decoration: underline dotted;
            text-underline-offset: 4px;
        }
        .btn-container {
            text-align: center;
            margin: 80px 0;
            display: flex;
            justify-content: center;
            gap: 35px;
            flex-wrap: wrap;
        }
        .btn {
            padding: 20px 40px;
            font-size: 22px;
            font-weight: 800;
            border: none;
            border-radius: 15px;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }
        .download-btn {
            background: linear-gradient(135deg, #ffca28, #ffb300);
            color: #2d3748;
        }
        .download-btn:hover {
            background: linear-gradient(135deg, #ffb300, #f57f17);
            transform: translateY(-4px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.25);
        }
        .login-btn {
            background: linear-gradient(135deg, #2e7d32, #1b5e20);
            color: white;
        }
        .login-btn:hover {
            background: linear-gradient(135deg, #1b5e20, #003300);
            transform: translateY(-4px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.25);
        }
        .img-container {
            text-align: center;
            margin: 60px 0;
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.4s ease;
        }
        .img-container img:hover {
            transform: scale(1.03);
        }
        ul, ol {
            margin: 30px 0 30px 60px;
            font-size: 18px;
            color: #4a5568;
        }
        li {
            margin-bottom: 18px;
            padding-left: 15px;
        }
        ul li::marker {
            color: #2e7d32;
            font-size: 24px;
        }
        ol li::marker {
            color: #388e3c;
            font-weight: 700;
            font-size: 20px;
        }
        .table-container {
            overflow-x: auto;
            margin: 50px 0;
            border-radius: 20px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background-color: white;
            border-radius: 20px;
            overflow: hidden;
        }
        th, td {
            padding: 22px;
            text-align: left;
            border-bottom: 1px solid #e2e8f0;
            font-size: 18px;
        }
        th {
            background: linear-gradient(135deg, #1b5e20, #2e7d32);
            color: white;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        tr:hover {
            background-color: #f8fafc;
            transform: scale(1.008);
            transition: transform 0.3s ease;
        }
        tr:nth-child(even) {
            background-color: #f1f8e9;
        }
        .indian-note {
            background-color: #f9fbe7;
            border-left: 6px solid #ffca28;
            padding: 25px;
            margin: 40px 0;
            border-radius: 0 15px 15px 0;
            box-shadow: 0 6px 18px rgba(0,0,0,0.08);
        }
        .indian-note p {
            font-size: 18px;
            color: #2d3748;
            font-weight: 500;
        }
        .indian-note strong {
            color: #f57f17;
            font-size: 19px;
        }
        .festival-badge {
            display: inline-block;
            background: linear-gradient(135deg, #d32f2f, #b71c1c);
            color: white;
            padding: 10px 18px;
            border-radius: 30px;
            margin-right: 15px;
            font-size: 16px;
            font-weight: 700;
            box-shadow: 0 4px 10px rgba(0,0,0,0.12);
        }
        .tags-container, .categories-container {
            margin: 70px 0 50px;
        }
        .tags-container h3, .categories-container h3 {
            margin-bottom: 30px;
        }
        .tag, .category {
            display: inline-block;
            padding: 12px 24px;
            margin: 0 12px 20px 0;
            background: linear-gradient(135deg, #388e3c, #2e7d32);
            color: white;
            border-radius: 30px;
            text-decoration: none;
            font-size: 17px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 12px rgba(0,0,0,0.1);
        }
        .tag:hover, .category:hover {
            background: linear-gradient(135deg, #2e7d32, #1b5e20);
            transform: translateY(-3px);
            box-shadow: 0 8px 18px rgba(0,0,0,0.15);
        }
        .category {
            background: linear-gradient(135deg, #0288d1, #0277bd);
        }
        .category:hover {
            background: linear-gradient(135deg, #0277bd, #01579b);
        }
        .footer {
            background: linear-gradient(135deg, #1b5e20, #003300);
            color: white;
            padding: 80px 0 40px;
            margin-top: 120px;
            border-radius: 40px 40px 0 0;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 25px;
        }
        .footer p {
            text-align: center;
            margin-bottom: 40px;
            font-size: 18px;
            color: #e2e8f0;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
            margin: 50px 0;
        }
        .footer-links a {
            color: #cbd5e0;
            text-decoration: none;
            font-size: 18px;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: #ffca28;
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid #4a5568;
            font-size: 17px;
            color: #a0aec0;
        }
        .recommendation {
            text-align: center;
            font-size: 19px;
            color: #f0f8fb;
            margin: 50px 0;
            line-height: 2;
        }
        .recommendation a {
            color: #ffca28;
            font-weight: 700;
            text-decoration: none;
        }
        .recommendation a:hover {
            text-decoration: underline;
        }
        .keyword-badge {
            display: inline-block;
            background-color: #e8f5e9;
            color: #2e7d32;
            padding: 5px 12px;
            border-radius: 20px;
            margin: 0 8px;
            font-weight: 700;
            font-size: 17px;
        }
        .section-summary {
            background-color: #e8f5e9;
            padding: 30px;
            border-radius: 20px;
            margin: 40px 0;
            border-left: 6px solid #388e3c;
        }
        .section-summary p {
            font-size: 19px;
            color: #2d3748;
            font-weight: 600;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 34px;
                margin-bottom: 45px;
                padding-bottom: 20px;
            }
            h2 {
                font-size: 26px;
                margin: 50px 0 25px;
                padding-left: 20px;
            }
            h3 {
                font-size: 22px;
            }
            p, ul, ol, li {
                font-size: 17px;
            }
            .btn {
                padding: 18px 30px;
                font-size: 20px;
                width: 100%;
                justify-content: center;
            }
            .btn-container {
                gap: 25px;
            }
            th, td {
                padding: 18px;
                font-size: 17px;
            }
            .indian-note {
                padding: 20px;
            }
            ul, ol {
                margin: 25px 0 25px 40px;
            }
        }
        .guide-card {
            background-color: white;
            border-radius: 20px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            border-top: 5px solid #2e7d32;
        }
        .guide-card h4 {
            font-size: 21px;
            color: #2d3748;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .guide-card h4::before {
            content: "🎯";
            font-size: 24px;
        }
        .community-topic {
            background-color: #f1f8e9;
            border-radius: 15px;
            padding: 25px;
            margin: 30px 0;
            border-left: 4px solid #388e3c;
        }
        .community-topic h4 {
            font-size: 20px;
            color: #2d3748;
            margin-bottom: 15px;
        }
        .community-topic p {
            color: #4a5568;
            font-size: 17px;
        }
        .review-card {
            background-color: #ffffff;
            border-radius: 15px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            border-bottom: 3px solid #2e7d32;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        .reviewer {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .reviewer-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #e8f5e9;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #2e7d32;
            font-weight: 700;
        }
        .reviewer-info h5 {
            font-size: 19px;
            color: #2d3748;
        }
        .reviewer-info p {
            font-size: 16px;
            color: #718096;
            margin-bottom: 0;
        }
        .review-rating {
            color: #ffca28;
            font-size: 24px;
        }
        .review-content {
            font-size: 17px;
            color: #4a5568;
            line-height: 1.7;
        }
        .events-calendar {
            background-color: #ffffff;
            border-radius: 20px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        .event-item {
            display: flex;
            gap: 25px;
            padding: 20px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        .event-date {
            background: linear-gradient(135deg, #2e7d32, #388e3c);
            color: white;
            padding: 15px 20px;
            border-radius: 10px;
            text-align: center;
            min-width: 120px;
        }
        .event-date .month {
            font-size: 16px;
            text-transform: uppercase;
            font-weight: 600;
        }
        .event-date .day {
            font-size: 32px;
            font-weight: 900;
            line-height: 1;
        }
        .event-details h4 {
            margin-bottom: 10px;
            color: #2d3748;
        }
        .event-details p {
            margin-bottom: 15px;
            color: #4a5568;
        }
        .event-tag {
            display: inline-block;
            background-color: #e8f5e9;
            color: #2e7d32;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            margin-right: 10px;
        }
        .game-type-section, .game-tags-section {
            margin: 50px 0;
            padding: 30px;
            background-color: #f9fbe7;
            border-radius: 20px;
        }
        .game-type-section h3, .game-tags-section h3 {
            margin-bottom: 25px;
        }
        .type-list, .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
