* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        :root {
            --primary: #1a1a2e;
            --secondary: #16213e;
            --accent: #fca311;
            --text: #e6e6e6;
            --text-secondary: #b3b3b3;
            --card-bg: #0f3460;
            --border: #2d4059;
            --success: #4CAF50;
            --shadow: rgba(0, 0, 0, 0.5);
        }
        body {
            background-color: var(--primary);
            color: var(--text);
            line-height: 1.7;
            font-size: 1.05rem;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffbe33;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--secondary);
            border-bottom: 2px solid var(--accent);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            background: linear-gradient(to right, #fca311, #ffbe33);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .desktop-nav a:hover {
            background-color: rgba(252, 163, 17, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--secondary);
            padding: 20px;
            border-top: 1px solid var(--border);
            flex-direction: column;
            gap: 15px;
            box-shadow: 0 10px 15px var(--shadow);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 12px;
            border-bottom: 1px solid var(--border);
            font-size: 1.1rem;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.95rem;
            color: var(--text-secondary);
        }
        .breadcrumb a {
            margin: 0 5px;
        }
        .breadcrumb i {
            margin: 0 8px;
        }
        .search-section {
            background-color: var(--card-bg);
            padding: 30px;
            border-radius: 10px;
            margin: 25px 0;
            text-align: center;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid var(--border);
            border-radius: 50px;
            background-color: var(--secondary);
            color: var(--text);
            font-size: 1rem;
        }
        .search-btn {
            background-color: var(--accent);
            color: var(--primary);
            border: none;
            border-radius: 50px;
            padding: 0 25px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .search-btn:hover {
            background-color: #ffbe33;
        }
        main {
            padding: 30px 0;
        }
        article {
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 10px 25px var(--shadow);
        }
        h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--accent);
            line-height: 1.3;
        }
        h2 {
            font-size: 2rem;
            margin: 40px 0 20px;
            color: #ffbe33;
            border-left: 5px solid var(--accent);
            padding-left: 15px;
        }
        h3 {
            font-size: 1.6rem;
            margin: 30px 0 15px;
            color: var(--text);
        }
        p {
            margin-bottom: 1.5em;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: rgba(252, 163, 17, 0.15);
            border-left: 4px solid var(--accent);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        .article-img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            border: 3px solid var(--border);
            box-shadow: 0 8px 20px var(--shadow);
        }
        .caption {
            margin-top: 10px;
            font-style: italic;
            color: var(--text-secondary);
            font-size: 0.95rem;
        }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        .rating-box, .comment-box {
            background-color: var(--secondary);
            padding: 30px;
            border-radius: 10px;
            border: 1px solid var(--border);
        }
        .rating-box h3, .comment-box h3 {
            color: var(--accent);
            margin-bottom: 20px;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 20px 0;
            justify-content: center;
        }
        .star {
            font-size: 2.5rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: gold;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .form-input, .form-textarea {
            padding: 15px;
            background-color: var(--primary);
            border: 1px solid var(--border);
            border-radius: 8px;
            color: var(--text);
            font-size: 1rem;
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background-color: var(--accent);
            color: var(--primary);
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .submit-btn:hover {
            background-color: #ffbe33;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin: 50px 0 30px;
        }
        @media (min-width: 768px) {
            .web-links {
                grid-template-columns: repeat(5, 1fr);
            }
        }
        .web-link {
            background-color: var(--secondary);
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            border: 1px solid transparent;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            border-color: var(--accent);
            transform: translateY(-5px);
        }
        footer {
            background-color: var(--secondary);
            padding: 40px 0 20px;
            border-top: 2px solid var(--accent);
            margin-top: 50px;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .copyright {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid var(--border);
            width: 100%;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input, .search-btn {
                width: 100%;
                border-radius: 8px;
            }
            article {
                padding: 25px;
            }
        }
