* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Roboto', sans-serif;
        }
        body {
            line-height: 1.9;
            color: #2d2d2d;
            background-color: #f8f2e9;
            padding-bottom: 60px;
            font-size: 16px;
        }
        .container {
            max-width: 1250px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #e67e22;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 3px 12px rgba(0,0,0,0.15);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 900;
            color: #ffffff;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.2);
            text-decoration: none;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo span {
            color: #8b4513;
        }
        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #8b4513;
            border-bottom: 2px solid #8b4513;
        }
        .daman-link {
            background-color: #8b4513;
            padding: 10px 20px;
            border-radius: 8px;
            border-bottom: none !important;
        }
        .daman-link:hover {
            background-color: #6b3410;
            color: #ffffff !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(139, 69, 19, 0.3);
        }
        .menu-btn {
            display: none;
            background: none;
            border: none;
            color: #ffffff;
            font-size: 1.8rem;
            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: #e67e22;
                padding: 100px 20px 20px;
                gap: 25px;
                box-shadow: 0 5px 15px rgba(0,0,0,0.2);
                justify-content: center;
            }
            .nav-links.active {
                display: flex;
            }
            .menu-btn {
                display: block;
                position: absolute;
                right: 20px;
                top: 22px;
            }
            .logo {
                font-size: 1.7rem;
            }
        }
        h1 {
            font-size: 2.8rem;
            color: #8b4513;
            text-align: center;
            margin: 50px 0 35px;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.1);
            line-height: 1.3;
        }
        h2 {
            font-size: 2.2rem;
            color: #e67e22;
            margin: 60px 0 25px;
            border-bottom: 4px solid #f0d4b8;
            padding-bottom: 12px;
            position: relative;
        }
        h2::after {
            content: "";
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: #e67e22;
        }
        h3 {
            font-size: 1.6rem;
            color: #6b3410;
            margin: 40px 0 18px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        h4 {
            font-size: 1.3rem;
            color: #e67e22;
            margin: 30px 0 15px;
            font-weight: 600;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.08rem;
            text-align: justify;
            line-height: 1.9;
        }
        .highlight {
            font-weight: 700;
            color: #e67e22;
            text-shadow: 0.5px 0.5px 1px rgba(0,0,0,0.1);
        }
        .desi-note {
            background-color: #fff8e6;
            padding: 15px 20px;
            border-left: 4px solid #e67e22;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
            font-style: italic;
        }
        .btn-container {
            text-align: center;
            margin: 50px 0;
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }
        .btn {
            padding: 16px 35px;
            font-size: 1.2rem;
            font-weight: 700;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .download-btn {
            background-color: #e67e22;
            color: #ffffff;
        }
        .download-btn:hover {
            background-color: #d35400;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(230, 126, 34, 0.4);
        }
        .login-btn {
            background-color: #8b4513;
            color: #ffffff;
        }
        .login-btn:hover {
            background-color: #6b3410;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(139, 69, 19, 0.4);
        }
        .img-container {
            text-align: center;
            margin: 40px 0;
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border: 5px solid #ffffff;
        }
        .img-caption {
            font-size: 0.95rem;
            color: #666;
            margin-top: 12px;
            font-style: italic;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 35px 0;
            background-color: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 18px rgba(0,0,0,0.1);
        }
        th, td {
            padding: 18px;
            text-align: left;
            border-bottom: 1px solid #f0d4b8;
        }
        th {
            background-color: #e67e22;
            color: #ffffff;
            font-weight: 700;
            font-size: 1.05rem;
        }
        tr:hover {
            background-color: #fff8e6;
            transform: scale(1.01);
            transition: transform 0.2s ease;
        }
        ul, ol {
            margin: 25px 0 25px 40px;
        }
        li {
            margin-bottom: 15px;
            font-size: 1.08rem;
            line-height: 1.8;
            position: relative;
        }
        ul li::before {
            content: "🍞";
            position: absolute;
            left: -30px;
            top: 2px;
        }
        ol li::before {
            content: counter(list-item) ".";
            position: absolute;
            left: -30px;
            top: 0;
            font-weight: 700;
            color: #e67e22;
        }
        .section {
            background-color: #ffffff;
            border-radius: 18px;
            padding: 35px;
            margin-bottom: 50px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        .guide-card {
            background-color: #fff8e6;
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .guide-card h4 {
            color: #8b4513;
            margin-top: 0;
        }
        .event-card {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 30px 0;
        }
        .event-item {
            flex: 1 1 300px;
            background-color: #ffffff;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            border-top: 4px solid #e67e22;
        }
        .event-item h4 {
            margin-top: 0;
            color: #6b3410;
        }
        .game-types {
            margin: 40px 0 30px;
        }
        .game-types h4 {
            margin-bottom: 20px;
        }
        .type-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .type-links a {
            background-color: #f0d4b8;
            color: #8b4513;
            padding: 8px 18px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .type-links a:hover {
            background-color: #e67e22;
            color: #ffffff;
            transform: translateY(-2px);
        }
        .tags {
            margin: 30px 0 40px;
        }
        .tags h4 {
            margin-bottom: 20px;
        }
        .tag-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .tag-links a {
            background-color: #f8f2e9;
            color: #6b3410;
            padding: 7px 15px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .tag-links a:hover {
            background-color: #8b4513;
            color: #ffffff;
        }
        footer {
            background-color: #8b4513;
            color: #ffffff;
            padding: 60px 0 30px;
            margin-top: 80px;
            border-top-left-radius: 30px;
            border-top-right-radius: 30px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        .footer-section h4 {
            font-size: 1.4rem;
            margin-bottom: 25px;
            color: #f0d4b8;
            border-bottom: 2px solid #f0d4b8;
            padding-bottom: 12px;
        }
        .footer-section a {
            color: #f8f2e9;
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: color 0.3s ease;
            font-size: 1.05rem;
        }
        .footer-section a:hover {
            color: #e67e22;
            padding-left: 5px;
        }
        .recommendation {
            text-align: center;
            font-size: 1.15rem;
            margin: 40px 0;
            padding: 25px;
            background-color: #6b3410;
            border-radius: 12px;
            line-height: 1.8;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #f0d4b8;
            font-size: 1rem;
            color: #f0d4b8;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
                margin: 40px 0 30px;
            }
            h2 {
                font-size: 1.8rem;
                margin: 50px 0 20px;
            }
            h3 {
                font-size: 1.4rem;
                margin: 35px 0 15px;
            }
            h4 {
                font-size: 1.2rem;
            }
            p, li {
                font-size: 1.02rem;
            }
            .section {
                padding: 25px;
            }
            .btn {
                padding: 14px 28px;
                font-size: 1.05rem;
                width: 100%;
                justify-content: center;
            }
            .btn-container {
                gap: 15px;
            }
            ul, ol {
                margin-left: 30px;
            }
            ul li::before {
                left: -25px;
            }
            ol li::before {
                left: -25px;
            }
            table {
                margin: 25px 0;
            }
            th, td {
                padding: 12px;
                font-size: 0.95rem;
            }
            .footer-container {
                gap: 30px;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 1.5rem;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .section {
                padding: 20px;
            }
            .img-container {
                margin: 30px 0;
            }
        }
