        * {
            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, #0f1a2c 0%, #1a2b3c 100%);
            color: #e0e0e0;
            line-height: 1.7;
            min-height: 100vh;
            padding-top: 80px;
        }
        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;
        }
        header {
            background: rgba(15, 26, 44, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            border-bottom: 2px solid #ff4757;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff4757, #ff6b81);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            font-size: 2rem;
            color: #ff4757;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        nav a {
            color: #b0b7c3;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        nav a:hover, nav a.active {
            background: rgba(255, 71, 87, 0.1);
            color: #ff6b81;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #ff6b81;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #94a3b8;
            margin-bottom: 20px;
            border-bottom: 1px solid #2d3748;
        }
        .breadcrumb a {
            color: #94a3b8;
        }
        .breadcrumb a:hover {
            color: #ff6b81;
        }
        .search-box {
            max-width: 600px;
            margin: 30px auto;
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid #374151;
        }
        .search-box h3 {
            margin-bottom: 15px;
            color: #ff6b81;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid #4b5563;
            border-radius: 8px;
            background: #1e293b;
            color: #f1f5f9;
            font-size: 1rem;
        }
        .search-form button {
            padding: 12px 25px;
            background: linear-gradient(90deg, #ff4757, #ff6b81);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .search-form button:hover {
            transform: scale(1.05);
        }
        main {
            padding: 30px 0;
        }
        article {
            background: rgba(30, 41, 59, 0.7);
            border-radius: 16px;
            padding: 30px;
            margin-bottom: 40px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            border: 1px solid #374151;
        }
        h1 {
            font-size: 2.5rem;
            color: #ff6b81;
            margin-bottom: 20px;
            line-height: 1.3;
            text-align: center;
        }
        h2 {
            font-size: 1.8rem;
            color: #4dabf7;
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #4b5563;
        }
        h3 {
            font-size: 1.4rem;
            color: #74c0fc;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: rgba(255, 107, 129, 0.1);
            border-left: 4px solid #ff6b81;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .tip-box {
            background: rgba(77, 171, 247, 0.1);
            border: 1px solid #4dabf7;
            padding: 20px;
            border-radius: 12px;
            margin: 25px 0;
        }
        .tip-box h4 {
            color: #4dabf7;
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #4b5563;
            transition: transform 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            border-color: #ff6b81;
        }
        .stat-card i {
            font-size: 2.5rem;
            color: #ff6b81;
            margin-bottom: 15px;
        }
        .stat-card h4 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #e2e8f0;
        }
        .article-image {
            margin: 30px auto;
            text-align: center;
        }
        .article-image img {
            border-radius: 12px;
            border: 3px solid #4b5563;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
        }
        .article-image figcaption {
            margin-top: 10px;
            font-style: italic;
            color: #94a3b8;
        }
        .rating-section, .comments-section {
            background: rgba(30, 41, 59, 0.7);
            border-radius: 16px;
            padding: 30px;
            margin: 40px 0;
            border: 1px solid #374151;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            max-width: 600px;
            margin-top: 20px;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #ffd43b;
            margin: 10px 0;
        }
        .rating-stars i {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
        }
        textarea, select, input[type="text"], input[type="email"] {
            padding: 12px 15px;
            border: 2px solid #4b5563;
            border-radius: 8px;
            background: #1e293b;
            color: #f1f5f9;
            font-size: 1rem;
            width: 100%;
        }
        .submit-btn {
            padding: 14px 30px;
            background: linear-gradient(90deg, #ff4757, #ff6b81);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            align-self: flex-start;
            transition: transform 0.2s;
        }
        .submit-btn:hover {
            transform: scale(1.05);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin: 40px 0;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.03);
            padding: 15px;
            border-radius: 8px;
            border-left: 3px solid #ff4757;
            transition: background 0.3s;
        }
        .web-link:hover {
            background: rgba(255, 71, 87, 0.1);
        }
        .web-link a {
            color: #e2e8f0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        footer {
            background: rgba(15, 23, 42, 0.95);
            padding: 40px 0 20px;
            margin-top: 50px;
            border-top: 2px solid #ff4757;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .copyright {
            color: #94a3b8;
            font-size: 0.9rem;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #374151;
            width: 100%;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.6rem; }
            nav ul { gap: 15px; }
        }
        @media (max-width: 768px) {
            body { padding-top: 70px; }
            .hamburger { display: block; }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(15, 26, 44, 0.98);
                padding: 20px;
                border-top: 1px solid #374151;
            }
            nav ul.active { display: flex; }
            .header-container { position: relative; }
            .stats-grid { grid-template-columns: 1fr; }
            .footer-links { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            h1 { font-size: 1.8rem; }
            article, .rating-section, .comments-section { padding: 20px; }
            .search-form { flex-direction: column; }
            .search-form button { width: 100%; }
        }
