* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Arial', sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0c1a2d 0%, #152642 100%);
            color: #e0e0e0;
            line-height: 1.7;
            min-height: 100vh;
        }
        a {
            text-decoration: none;
            color: #4dabf7;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #74c0fc;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(10, 25, 47, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #1e3a8a;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff6b6b, #4dabf7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .logo a {
            background: none;
            -webkit-text-fill-color: unset;
        }
        .search-box {
            display: flex;
            flex-grow: 1;
            max-width: 500px;
            margin: 0 30px;
        }
        .search-box input {
            flex-grow: 1;
            padding: 12px 20px;
            border: 2px solid #1e3a8a;
            border-radius: 50px 0 0 50px;
            background: #0f172a;
            color: #e0e0e0;
            font-size: 1rem;
            outline: none;
        }
        .search-box button {
            background: linear-gradient(90deg, #1e3a8a, #3b82f6);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s ease;
        }
        .search-box button:hover {
            background: linear-gradient(90deg, #3b82f6, #60a5fa);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #e0e0e0;
            font-size: 1.8rem;
            cursor: pointer;
        }
        nav ul {
            display: flex;
            list-style: none;
            background: rgba(15, 23, 42, 0.9);
            border-radius: 10px;
            padding: 10px;
            margin-top: 10px;
        }
        nav ul li {
            margin: 0 15px;
        }
        nav ul li a {
            color: #cbd5e1;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 5px;
            display: block;
            transition: all 0.3s ease;
        }
        nav ul li a:hover {
            background: #1e3a8a;
            color: white;
            transform: translateY(-3px);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        .breadcrumb a {
            color: #94a3b8;
        }
        .breadcrumb a:hover {
            color: #4dabf7;
        }
        main {
            padding: 40px 0;
        }
        article {
            background: rgba(15, 23, 42, 0.8);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #1e3a8a;
        }
        h1 {
            font-size: 2.8rem;
            color: #60a5fa;
            margin-bottom: 25px;
            line-height: 1.2;
            text-align: center;
            text-shadow: 0 2px 10px rgba(96, 165, 250, 0.3);
        }
        h2 {
            font-size: 2rem;
            color: #38bdf8;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #3b82f6;
        }
        h3 {
            font-size: 1.5rem;
            color: #7dd3fc;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(30, 58, 138, 0.3), rgba(59, 130, 246, 0.3));
            border-left: 5px solid #3b82f6;
            padding: 20px;
            border-radius: 0 10px 10px 0;
            margin: 25px 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            border: 3px solid #3b82f6;
            display: block;
            margin: 30px auto;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
            transition: transform 0.5s ease;
        }
        img:hover {
            transform: scale(1.02);
        }
        .interactive-section {
            background: rgba(30, 58, 138, 0.2);
            border-radius: 15px;
            padding: 30px;
            margin: 40px 0;
            border: 1px solid #3b82f6;
        }
        .interactive-section h3 {
            margin-top: 0;
        }
        .rating, .comment-form {
            margin-top: 30px;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .star {
            font-size: 2rem;
            color: #94a3b8;
            cursor: pointer;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        .star:hover,
        .star.active {
            color: #fbbf24;
            transform: scale(1.2);
        }
        .interactive-section input, .interactive-section textarea {
            width: 100%;
            padding: 15px;
            margin: 10px 0 20px;
            background: #0f172a;
            border: 2px solid #1e3a8a;
            border-radius: 10px;
            color: #e0e0e0;
            font-size: 1rem;
        }
        .interactive-section button {
            background: linear-gradient(90deg, #10b981, #34d399);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 10px;
            cursor: pointer;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        .interactive-section button:hover {
            background: linear-gradient(90deg, #34d399, #6ee7b7);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
        }
        .emoji {
            font-size: 1.3rem;
            margin: 0 5px;
            vertical-align: middle;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin: 40px 0;
        }
        .web-link {
            background: rgba(30, 58, 138, 0.5);
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: rgba(59, 130, 246, 0.7);
            transform: translateY(-5px);
        }
        footer {
            background: #0c1a2d;
            border-top: 2px solid #1e3a8a;
            padding: 40px 0 20px;
            text-align: center;
            color: #94a3b8;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 30px;
        }
        .copyright {
            font-size: 0.9rem;
            padding-top: 20px;
            border-top: 1px solid #1e3a8a;
        }
        @media (max-width: 992px) {
            .web-links {
                grid-template-columns: repeat(3, 1fr);
            }
            h1 {
                font-size: 2.3rem;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .search-box {
                order: 3;
                max-width: 100%;
                margin: 20px 0 0;
            }
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                width: 100%;
                margin-top: 20px;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                align-items: center;
            }
            nav ul li {
                margin: 10px 0;
                width: 100%;
                text-align: center;
            }
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
            article {
                padding: 25px;
            }
        }
        @media (max-width: 576px) {
            .web-links {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.6rem;
            }
        }
