* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Roboto', 'Lato', 'Teko', sans-serif;
        }
        body {
            line-height: 1.8;
            color: #2d2d2d;
            background-color: #f5f5dc;
            padding-bottom: 90px;
            font-size: 16px;
        }
        .container {
            max-width: 1350px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #2e7d32;
            padding: 22px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 5px 18px rgba(0,0,0,0.22);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.4rem;
            font-weight: 900;
            color: #ffffff;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
            text-decoration: none;
            letter-spacing: 0.8px;
            display: flex;
            align-items: center;
            gap: 12px;
            text-transform: uppercase;
        }
        .logo span {
            color: #ffeb3b;
        }
        .nav-links {
            display: flex;
            gap: 40px;
            align-items: center;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.15rem;
            transition: all 0.3s ease;
            padding: 8px 0;
            border-bottom: 3px solid transparent;
        }
        .nav-links a:hover {
            color: #ffeb3b;
            border-bottom: 3px solid #ffeb3b;
        }
        .daman-link {
            background-color: #ffeb3b;
            padding: 14px 28px;
            border-radius: 12px;
            border-bottom: none !important;
            color: #2e7d32 !important;
            font-weight: 700;
            font-size: 1.2rem;
        }
        .daman-link:hover {
            background-color: #fdd835;
            transform: translateY(-4px);
            box-shadow: 0 6px 15px rgba(255, 235, 59, 0.45);
        }
        .menu-btn {
            display: none;
            background: none;
            border: none;
            color: #ffffff;
            font-size: 2.2rem;
            cursor: pointer;
            z-index: 10000;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background-color: #2e7d32;
                padding: 130px 20px 20px;
                gap: 35px;
                box-shadow: 0 8px 25px rgba(0,0,0,0.3);
                justify-content: center;
            }
            .nav-links.active {
                display: flex;
            }
            .menu-btn {
                display: block;
                position: absolute;
                right: 20px;
                top: 28px;
            }
            .logo {
                font-size: 2rem;
            }
        }
        h1 {
            font-size: 3.2rem;
            color: #2e7d32;
            text-align: center;
            margin: 70px 0 45px;
            text-shadow: 1px 1px 6px rgba(0,0,0,0.12);
            line-height: 1.5;
            font-weight: 900;
        }
        h2 {
            font-size: 2.4rem;
            color: #1b5e20;
            margin: 80px 0 35px;
            border-bottom: 4px solid #e8f5e9;
            padding-bottom: 18px;
            position: relative;
            font-weight: 800;
        }
        h2::after {
            content: "";
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100px;
            height: 4px;
            background-color: #2e7d32;
        }
        h3 {
            font-size: 1.8rem;
            color: #2e7d32;
            margin: 50px 0 25px;
            display: flex;
            align-items: center;
            gap: 15px;
            font-weight: 700;
        }
        h4 {
            font-size: 1.5rem;
            color: #388e3c;
            margin: 40px 0 20px;
            font-weight: 600;
        }
        p {
            margin-bottom: 28px;
            font-size: 1.15rem;
            text-align: justify;
            line-height: 1.85;
        }
        .highlight {
            font-weight: 700;
            color: #2e7d32;
            text-shadow: 0.5px 0.5px 1px rgba(0,0,0,0.15);
        }
        .desi-note {
            background-color: #e8f5e9;
            padding: 20px 28px;
            border-left: 6px solid #2e7d32;
            margin: 35px 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .player-quote {
            background-color: #f8f9fa;
            padding: 22px 28px;
            border-radius: 12px;
            margin: 35px 0;
            border-top: 4px solid #2e7d32;
            font-size: 1.1rem;
            position: relative;
        }
        .player-quote::before {
            content: '"';
            font-size: 3.5rem;
            color: #2e7d32;
            opacity: 0.3;
            position: absolute;
            top: -15px;
            left: 15px;
        }
        .player-quote .player-name {
            display: block;
            text-align: right;
            margin-top: 12px;
            font-weight: 700;
            color: #1b5e20;
        }
        .btn-container {
            text-align: center;
            margin: 70px 0;
            display: flex;
            justify-content: center;
            gap: 35px;
            flex-wrap: wrap;
        }
        .btn {
            padding: 20px 45px;
            font-size: 1.4rem;
            font-weight: 700;
            border: none;
            border-radius: 15px;
            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.18);
        }
        .download-btn {
            background-color: #2e7d32;
            color: #ffffff;
        }
        .download-btn:hover {
            background-color: #1b5e20;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(46, 125, 50, 0.5);
        }
        .login-btn {
            background-color: #388e3c;
            color: #ffffff;
        }
        .login-btn:hover {
            background-color: #235926;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(56, 142, 60, 0.5);
        }
        .img-container {
            text-align: center;
            margin: 60px 0;
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            border-radius: 18px;
            box-shadow: 0 12px 30px rgba(0,0,0,0.25);
            border: 7px solid #ffffff;
        }
        .img-caption {
            font-size: 1.05rem;
            color: #555;
            margin-top: 18px;
            font-style: italic;
            max-width: 950px;
            margin-left: auto;
            margin-right: auto;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 45px 0;
            background-color: #ffffff;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 10px 28px rgba(0,0,0,0.18);
        }
        th, td {
            padding: 22px;
            text-align: left;
            border-bottom: 1px solid #e8f5e9;
        }
        th {
            background-color: #2e7d32;
            color: #ffffff;
            font-weight: 700;
            font-size: 1.15rem;
        }
        tr:hover {
            background-color: #f9fbe7;
            transform: scale(1.005);
            transition: transform 0.2s ease;
        }
        ul, ol {
            margin: 35px 0 35px 50px;
        }
        li {
            margin-bottom: 20px;
            font-size: 1.15rem;
            line-height: 1.85;
            position: relative;
        }
        ul li::before {
            content: "🍲";
            position: absolute;
            left: -40px;
            top: 3px;
        }
        ol li::before {
            content: counter(list-item) ".";
            position: absolute;
            left: -40px;
            top: 0;
            font-weight: 700;
            color: #2e7d32;
        }
        .section {
            background-color: #ffffff;
            border-radius: 25px;
            padding: 45px;
            margin-bottom: 70px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.12);
        }
        .guide-card {
            background-color: #f9fbe7;
            border-radius: 18px;
            padding: 35px;
            margin: 40px 0;
            box-shadow: 0 6px 18px rgba(0,0,0,0.09);
            border-left: 6px solid #2e7d32;
        }
        .guide-card h4 {
            color: #1b5e20;
            margin-top: 0;
        }
        .event-card {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin: 40px 0;
        }
        .event-item {
            flex: 1 1 330px;
            background-color: #ffffff;
            border-radius: 18px;
            padding: 30px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.12);
            border-top: 6px solid #2e7d32;
        }
        .event-item h4 {
            margin-top: 0;
            color: #1b5e20;
        }
        .game-types {
            margin: 60px 0 50px;
        }
        .game-types h4 {
            margin-bottom: 30px;
        }
        .type-links {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
        }
        .type-links a {
            background-color: #e8f5e9;
            color: #1b5e20;
            padding: 12px 25px;
            border-radius: 35px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .type-links a:hover {
            background-color: #2e7d32;
            color: #ffffff;
            transform: translateY(-3px);
        }
        .tags {
            margin: 50px 0 60px;
        }
        .tags h4 {
            margin-bottom: 30px;
        }
        .tag-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .tag-links a {
            background-color: #f5f5dc;
            color: #1b5e20;
            padding: 10px 22px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 1.05rem;
            transition: all 0.3s ease;
        }
        .tag-links a:hover {
            background-color: #2e7d32;
            color: #ffffff;
        }
        footer {
            background-color: #1b5e20;
            color: #ffffff;
            padding: 80px 0 50px;
            margin-top: 120px;
            border-top-left-radius: 40px;
            border-top-right-radius: 40px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 50px;
            margin-bottom: 70px;
        }
        .footer-section h4 {
            font-size: 1.6rem;
            margin-bottom: 35px;
            color: #ffeb3b;
            border-bottom: 3px solid #ffeb3b;
            padding-bottom: 18px;
        }
        .footer-section a {
            color: #f5f5dc;
            text-decoration: none;
            display: block;
            margin-bottom: 18px;
            transition: color 0.3s ease;
            font-size: 1.15rem;
        }
        .footer-section a:hover {
            color: #ffeb3b;
            padding-left: 10px;
        }
        .recommendation {
            text-align: center;
            font-size: 1.3rem;
            margin: 60px 0;
            padding: 35px;
            background-color: #235926;
            border-radius: 18px;
            line-height: 2;
        }
        .copyright {
            text-align: center;
            padding-top: 50px;
            border-top: 1px solid #ffeb3b;
            font-size: 1.1rem;
            color: #e8f5e9;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.6rem;
                margin: 60px 0 40px;
            }
            h2 {
                font-size: 2.1rem;
                margin: 70px 0 30px;
            }
            h3 {
                font-size: 1.6rem;
                margin: 45px 0 22px;
            }
            h4 {
                font-size: 1.35rem;
            }
            p, li {
                font-size: 1.1rem;
            }
            .section {
                padding: 35px;
            }
            .btn {
                padding: 18px 40px;
                font-size: 1.25rem;
                width: 100%;
                justify-content: center;
            }
            .btn-container {
                gap: 25px;
            }
            ul, ol {
                margin-left: 40px;
            }
            ul li::before {
                left: -35px;
            }
            ol li::before {
                left: -35px;
            }
            table {
                margin: 35px 0;
            }
            th, td {
                padding: 18px;
                font-size: 1.05rem;
            }
            .footer-container {
                gap: 40px;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 1.8rem;
            }
            h1 {
                font-size: 2.3rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            .section {
                padding: 30px;
            }
            .img-container {
                margin: 50px 0;
            }
            .guide-card {
                padding: 30px;
            }
            .event-item {
                padding: 25px;
            }
        }
