* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #fdf2f8;
            color: #2d3748;
            line-height: 1.8;
            padding-bottom: 80px;
        }
        .header {
            background: linear-gradient(135deg, #9f7aea, #667eea);
            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: 36px;
            font-weight: 900;
            text-decoration: none;
            color: #ffffff;
            letter-spacing: 2px;
            text-shadow: 0 3px 6px rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo span {
            color: #ffd166;
        }
        .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: #ffd166;
            color: #2d3748;
            padding: 12px 22px;
            border-radius: 10px;
            font-weight: 700;
        }
        .nav-links .daman-link:hover {
            background-color: #ffbe0b;
            transform: translateY(-3px);
        }
        .hamburger {
            display: none;
            font-size: 32px;
            cursor: pointer;
            color: white;
            background-color: #2d3748;
            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, #9f7aea, #667eea);
                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: 28px;
            }
        }
        .container {
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 25px;
        }
        h1 {
            font-size: 45px;
            color: #2d3748;
            text-align: center;
            margin-bottom: 60px;
            padding-bottom: 25px;
            border-bottom: 5px solid #9f7aea;
            font-weight: 900;
            letter-spacing: 1px;
        }
        h2 {
            font-size: 32px;
            color: #667eea;
            margin: 70px 0 30px;
            padding-left: 25px;
            border-left: 6px solid #ffd166;
            font-weight: 800;
        }
        h3 {
            font-size: 26px;
            color: #38b2ac;
            margin: 50px 0 25px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        h3::before {
            content: "🐍";
            font-size: 32px;
        }
        p {
            margin-bottom: 25px;
            font-size: 19px;
            text-align: justify;
            color: #4a5568;
        }
        .highlight {
            font-weight: 800;
            color: #e53e3e;
            font-size: 20px;
        }
        .nimble-naga {
            font-weight: 900;
            color: #9f7aea;
            font-size: 20px;
            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, #22c55e, #16a34a);
            color: white;
        }
        .download-btn:hover {
            background: linear-gradient(135deg, #16a34a, #15803d);
            transform: translateY(-4px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.25);
        }
        .login-btn {
            background: linear-gradient(135deg, #f97316, #ea580c);
            color: white;
        }
        .login-btn:hover {
            background: linear-gradient(135deg, #ea580c, #c2410c);
            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: 19px;
            color: #4a5568;
        }
        li {
            margin-bottom: 18px;
            padding-left: 15px;
        }
        ul li::marker {
            color: #9f7aea;
            font-size: 24px;
        }
        ol li::marker {
            color: #667eea;
            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, #2d3748, #4a5568);
            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: #faf5ff;
        }
        .indian-note {
            background-color: #fffaf0;
            border-left: 6px solid #ffd166;
            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: 19px;
            color: #2d3748;
            font-weight: 500;
        }
        .indian-note strong {
            color: #f97316;
            font-size: 20px;
        }
        .festival-badge {
            display: inline-block;
            background: linear-gradient(135deg, #e53e3e, #c53030);
            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, #9f7aea, #805ad5);
            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, #805ad5, #6b46c1);
            transform: translateY(-3px);
            box-shadow: 0 8px 18px rgba(0,0,0,0.15);
        }
        .category {
            background: linear-gradient(135deg, #38b2ac, #319795);
        }
        .category:hover {
            background: linear-gradient(135deg, #319795, #287c7a);
        }
        .footer {
            background: linear-gradient(135deg, #2d3748, #1a202c);
            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: 19px;
            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: #ffd166;
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid #4a5568;
            font-size: 17px;
            color: #a0aec0;
        }
        .recommendation {
            text-align: center;
            font-size: 20px;
            color: #f0f8fb;
            margin: 50px 0;
            line-height: 2;
        }
        .recommendation a {
            color: #ffd166;
            font-weight: 700;
            text-decoration: none;
        }
        .recommendation a:hover {
            text-decoration: underline;
        }
        .keyword-badge {
            display: inline-block;
            background-color: #f3e8ff;
            color: #9f7aea;
            padding: 5px 12px;
            border-radius: 20px;
            margin: 0 8px;
            font-weight: 700;
            font-size: 18px;
        }
        .section-summary {
            background-color: #e8f4f8;
            padding: 30px;
            border-radius: 20px;
            margin: 40px 0;
            border-left: 6px solid #667eea;
        }
        .section-summary p {
            font-size: 20px;
            color: #2d3748;
            font-weight: 600;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 36px;
                margin-bottom: 45px;
                padding-bottom: 20px;
            }
            h2 {
                font-size: 28px;
                margin: 50px 0 25px;
                padding-left: 20px;
            }
            h3 {
                font-size: 24px;
            }
            p, ul, ol, li {
                font-size: 18px;
            }
            .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 #9f7aea;
        }
        .guide-card h4 {
            font-size: 22px;
            color: #2d3748;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .guide-card h4::before {
            content: "🎯";
            font-size: 24px;
        }
        .community-topic {
            background-color: #faf5ff;
            border-radius: 15px;
            padding: 25px;
            margin: 30px 0;
            border-left: 4px solid #805ad5;
        }
        .community-topic h4 {
            font-size: 21px;
            color: #2d3748;
            margin-bottom: 15px;
        }
        .community-topic p {
            color: #4a5568;
            font-size: 18px;
        }
