        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #0c1a2d 0%, #1a1f38 100%);
            color: #e0e0ff;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: #74c0fc;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section {
            padding: 60px 0;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .highlight {
            background: linear-gradient(90deg, #ff6b6b, #ffa8a8);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 800;
        }
        .emoji { font-size: 1.2em; }
        .site-header {
            background: rgba(12, 26, 45, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #2d3748;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 900;
            background: linear-gradient(to right, #00dbde, #fc00ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 6px;
        }
        .desktop-nav a:hover {
            background: rgba(77, 171, 247, 0.15);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #4dabf7;
        }
        .mobile-nav {
            display: none;
            background: #0c1a2d;
            padding: 20px;
            border-top: 1px solid #2d3748;
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .mobile-nav a {
            display: block;
            padding: 12px;
            border-radius: 6px;
            border-left: 4px solid #4dabf7;
        }
        .mobile-nav a:hover {
            background: rgba(77, 171, 247, 0.1);
        }
        .breadcrumb {
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.03);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #a5d8ff;
        }
        .breadcrumb span {
            color: #94a3b8;
        }
        .search-section {
            background: rgba(30, 41, 59, 0.6);
            padding: 30px 20px;
            border-radius: 12px;
            margin: 30px auto;
            max-width: 800px;
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid #4dabf7;
            border-radius: 50px;
            background: rgba(15, 23, 42, 0.8);
            color: #f1f5f9;
            font-size: 1rem;
        }
        .search-btn {
            padding: 15px 30px;
            background: linear-gradient(90deg, #4dabf7, #339af0);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .search-btn:hover {
            transform: scale(1.05);
        }
        .main-content {
            flex: 1;
        }
        .article-header {
            text-align: center;
            padding: 40px 20px;
            background: radial-gradient(circle at center, rgba(30, 58, 138, 0.3), transparent);
        }
        .article-header h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .article-meta {
            color: #94a3b8;
            font-size: 0.95rem;
            margin-top: 15px;
        }
        .content-section {
            background: rgba(15, 23, 42, 0.7);
            border-radius: 16px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        h2 {
            font-size: 2.2rem;
            margin: 40px 0 20px;
            color: #74c0fc;
            border-left: 6px solid #ff6b6b;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.6rem;
            margin: 30px 0 15px;
            color: #a5d8ff;
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            text-align: justify;
        }
        .feature-img {
            width: 100%;
            border-radius: 12px;
            margin: 30px auto;
            border: 3px solid #4dabf7;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }
        .tip-box {
            background: rgba(45, 55, 72, 0.6);
            border-left: 5px solid #51cf66;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .tip-box i {
            color: #51cf66;
            margin-right: 10px;
        }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        .rating-box, .comment-box {
            background: rgba(30, 41, 59, 0.8);
            padding: 30px;
            border-radius: 12px;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 20px 0;
            justify-content: center;
        }
        .star {
            font-size: 2rem;
            color: #94a3b8;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffd43b;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .rating-form input,
        .comment-form input,
        .comment-form textarea {
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #4dabf7;
            background: rgba(15, 23, 42, 0.8);
            color: #f1f5f9;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            padding: 15px;
            background: linear-gradient(90deg, #40c057, #2f9e44);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
        }
        .submit-btn:hover {
            background: linear-gradient(90deg, #2f9e44, #40c057);
            transform: translateY(-3px);
        }
        .footer-links {
            background: rgba(12, 26, 45, 0.9);
            padding: 40px 20px;
            margin-top: 60px;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: rgba(30, 41, 59, 0.6);
            padding: 15px;
            border-radius: 8px;
            transition: transform 0.3s;
        }
        .web-link:hover {
            transform: translateX(10px);
            background: rgba(77, 171, 247, 0.15);
        }
        .web-link a {
            color: #c5f6fa;
            font-weight: 600;
        }
        .site-footer {
            background: #0a0f1c;
            padding: 40px 20px;
            text-align: center;
            border-top: 2px solid #2d3748;
        }
        .copyright {
            color: #94a3b8;
            font-size: 0.9rem;
            margin-top: 20px;
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .article-header h1 { font-size: 2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.4rem; }
            .content-section { padding: 25px; }
            .header-container { padding: 12px 15px; }
            .search-form { flex-direction: column; }
            .search-btn { width: 100%; }
        }
