        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', Arial, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #0c1a2d 0%, #1a1e2e 50%, #261c2e 100%);
            color: #e0e0ff;
            line-height: 1.7;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            color: #6ee7ff;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #ff6b9d;
            text-shadow: 0 0 8px rgba(255, 107, 157, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(10, 15, 30, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #2a3b5c;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff6b9d, #6ee7ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav a {
            font-size: 1.1rem;
            padding: 8px 15px;
            border-radius: 20px;
        }
        nav a:hover {
            background: rgba(110, 231, 255, 0.15);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #6ee7ff;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #a0a0d0;
            border-bottom: 1px dashed #2a3b5c;
            margin-bottom: 30px;
        }
        .breadcrumb a:not(:last-child)::after {
            content: " › ";
            margin: 0 8px;
            color: #6ee7ff;
        }
        main {
            padding: 30px 0;
            min-height: 80vh;
        }
        article {
            background: rgba(20, 25, 45, 0.8);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
            border: 1px solid #334466;
            margin-bottom: 40px;
        }
        h1 {
            font-size: 2.8rem;
            background: linear-gradient(90deg, #ff9a3d, #ff6b9d);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 25px;
            line-height: 1.2;
            text-align: center;
        }
        h2 {
            font-size: 2rem;
            color: #6ee7ff;
            border-left: 5px solid #ff6b9d;
            padding-left: 15px;
            margin: 40px 0 20px;
        }
        h3 {
            font-size: 1.5rem;
            color: #ff9a3d;
            margin: 25px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.15rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(110, 231, 255, 0.1), rgba(255, 107, 157, 0.1));
            padding: 25px;
            border-radius: 15px;
            border-left: 5px solid #6ee7ff;
            margin: 30px 0;
        }
        .quote {
            font-style: italic;
            font-size: 1.3rem;
            color: #ffcc5c;
            text-align: center;
            padding: 20px;
            border-top: 2px dashed #ffcc5c;
            border-bottom: 2px dashed #ffcc5c;
            margin: 30px 0;
        }
        .emoji {
            font-size: 1.3em;
            margin: 0 5px;
        }
        .image-container {
            margin: 30px auto;
            max-width: 800px;
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
        }
        .image-container img {
            transition: transform 0.5s ease;
        }
        .image-container:hover img {
            transform: scale(1.03);
        }
        .caption {
            text-align: center;
            font-style: italic;
            color: #a0a0d0;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .search-box {
            background: rgba(30, 35, 60, 0.9);
            padding: 25px;
            border-radius: 15px;
            margin: 40px 0;
            text-align: center;
            border: 1px solid #445588;
        }
        .search-box h3 {
            margin-top: 0;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 20px auto 0;
        }
        .search-input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid #6ee7ff;
            border-radius: 30px 0 0 30px;
            background: #0c1425;
            color: #fff;
            font-size: 1rem;
        }
        .search-btn {
            background: linear-gradient(90deg, #6ee7ff, #3b9eff);
            color: #0c1a2d;
            border: none;
            padding: 0 30px;
            border-radius: 0 30px 30px 0;
            font-weight: bold;
            cursor: pointer;
            font-size: 1.1rem;
            transition: all 0.3s;
        }
        .search-btn:hover {
            background: linear-gradient(90deg, #3b9eff, #6ee7ff);
        }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        .card {
            background: rgba(30, 35, 60, 0.9);
            border-radius: 15px;
            padding: 25px;
            border: 1px solid #445588;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(110, 231, 255, 0.2);
        }
        .card h3 {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .card i {
            color: #ff9a3d;
        }
        textarea, input, select {
            width: 100%;
            padding: 15px;
            margin: 10px 0;
            border-radius: 10px;
            border: 1px solid #445588;
            background: #0c1425;
            color: #fff;
            font-size: 1rem;
        }
        .submit-btn {
            background: linear-gradient(90deg, #ff6b9d, #ff9a3d);
            color: #0c1a2d;
            border: none;
            padding: 15px 30px;
            border-radius: 30px;
            font-weight: bold;
            cursor: pointer;
            font-size: 1.1rem;
            display: block;
            margin: 20px auto 0;
            transition: all 0.3s;
        }
        .submit-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(255, 107, 157, 0.4);
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 15px 0;
            font-size: 2rem;
            color: #444;
        }
        .star-rating i {
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating i.active {
            color: #ffcc5c;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin: 40px 0;
        }
        .web-link {
            background: rgba(40, 45, 70, 0.7);
            padding: 15px;
            border-radius: 10px;
            border-left: 4px solid #ff6b9d;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: rgba(60, 65, 90, 0.9);
            border-left-color: #6ee7ff;
        }
        footer {
            background: #0a0f1e;
            border-top: 2px solid #2a3b5c;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h4 {
            color: #6ee7ff;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #334466;
            color: #8899bb;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.3rem; }
            h2 { font-size: 1.8rem; }
            nav ul { gap: 15px; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(10, 15, 30, 0.98);
                flex-direction: column;
                padding: 20px;
                border-top: 2px solid #2a3b5c;
                text-align: center;
            }
            nav ul.active { display: flex; }
            .header-inner { flex-wrap: wrap; }
            article { padding: 25px; }
            .search-form { flex-direction: column; }
            .search-input, .search-btn { border-radius: 30px; margin-bottom: 10px; }
        }
        @media (max-width: 480px) {
            h1 { font-size: 1.9rem; }
            .container { padding: 0 15px; }
            article { padding: 20px; }
            .card { padding: 20px; }
        }
