* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
            line-height: 1.6;
        }
        body {
            background: linear-gradient(135deg, #0c0c1d 0%, #1a1a2e 100%);
            color: #e0e0ff;
            min-height: 100vh;
            padding-top: 80px;
        }
        a {
            color: #6ee7ff;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ffcc5c;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(12, 12, 29, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #2a2a4a;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(90deg, #6ee7ff, #ffcc5c);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .logo a:hover {
            text-shadow: 0 0 15px rgba(110, 231, 255, 0.5);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-links a {
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 6px;
        }
        .nav-links a:hover {
            background: rgba(110, 231, 255, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #6ee7ff;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 15px 0;
            margin-bottom: 30px;
            font-size: 0.9rem;
            color: #a0a0c0;
            border-bottom: 1px solid #2a2a4a;
        }
        .breadcrumb a {
            color: #a0a0c0;
        }
        .breadcrumb a:hover {
            color: #ffcc5c;
        }
        .breadcrumb span {
            margin: 0 8px;
        }
        main {
            padding: 30px 0;
        }
        .article-header {
            margin-bottom: 40px;
            text-align: center;
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #6ee7ff, #ffcc5c);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        .meta {
            color: #a0a0c0;
            font-size: 0.95rem;
            margin-bottom: 20px;
        }
        .hero-image {
            margin: 30px auto;
            max-width: 900px;
        }
        .hero-image img {
            width: 100%;
            border: 3px solid #3a3a6a;
        }
        .content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        .article-content {
            background: rgba(26, 26, 46, 0.8);
            border-radius: 15px;
            padding: 30px;
            border: 1px solid #3a3a6a;
        }
        h2, h3, h4 {
            color: #ffcc5c;
            margin: 25px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #3a3a6a;
        }
        h2 {
            font-size: 1.8rem;
        }
        h3 {
            font-size: 1.5rem;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
            color: #d0d0f0;
        }
        .highlight {
            background: rgba(110, 231, 255, 0.1);
            border-left: 4px solid #6ee7ff;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .error-code {
            display: inline-block;
            background: #2a0f0f;
            color: #ff6b6b;
            padding: 5px 15px;
            border-radius: 20px;
            font-family: monospace;
            font-weight: bold;
            margin: 5px;
            border: 1px solid #ff6b6b;
        }
        ul, ol {
            margin-left: 25px;
            margin-bottom: 20px;
        }
        li {
            margin-bottom: 10px;
            color: #d0d0f0;
        }
        blockquote {
            border-left: 5px solid #ffcc5c;
            padding-left: 20px;
            margin: 25px 0;
            font-style: italic;
            color: #ffcc5c;
            background: rgba(255, 204, 92, 0.05);
            padding: 20px;
            border-radius: 0 10px 10px 0;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat {
            background: rgba(58, 58, 106, 0.5);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            border: 1px solid #4a4a8a;
        }
        .stat strong {
            display: block;
            font-size: 2rem;
            color: #6ee7ff;
            margin-bottom: 10px;
        }
        .interactive-section {
            background: rgba(42, 42, 74, 0.7);
            padding: 30px;
            border-radius: 15px;
            margin: 40px 0;
            border: 1px solid #5a5aaa;
        }
        .interactive-section h3 {
            text-align: center;
            color: #6ee7ff;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            color: #ffcc5c;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px 15px;
            background: rgba(12, 12, 29, 0.8);
            border: 1px solid #4a4a8a;
            border-radius: 8px;
            color: #e0e0ff;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #6ee7ff;
            box-shadow: 0 0 10px rgba(110, 231, 255, 0.3);
        }
        button {
            background: linear-gradient(90deg, #00b4d8, #0077b6);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        button:hover {
            background: linear-gradient(90deg, #0096c7, #005f8a);
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(0, 180, 216, 0.3);
        }
        .rating {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
        }
        .star {
            font-size: 2rem;
            color: #4a4a8a;
            cursor: pointer;
            transition: color 0.2s ease, transform 0.2s ease;
        }
        .star:hover,
        .star.active {
            color: #ffcc5c;
            transform: scale(1.2);
        }
        .comments {
            margin-top: 40px;
        }
        .comment {
            background: rgba(26, 26, 46, 0.8);
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
            border-left: 4px solid #5a5aaa;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            color: #a0a0c0;
            font-size: 0.9rem;
        }
        .sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }
        .sidebar-widget {
            background: rgba(26, 26, 46, 0.8);
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 30px;
            border: 1px solid #3a3a6a;
        }
        .sidebar-widget h3 {
            font-size: 1.3rem;
            margin-top: 0;
            color: #ffcc5c;
        }
        .quick-links {
            list-style: none;
        }
        .quick-links li {
            margin-bottom: 12px;
        }
        .quick-links a {
            display: block;
            padding: 10px 15px;
            background: rgba(58, 58, 106, 0.5);
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .quick-links a:hover {
            background: rgba(110, 231, 255, 0.2);
            padding-left: 20px;
        }
        .popular-articles {
            display: grid;
            gap: 15px;
        }
        .popular-article {
            display: grid;
            grid-template-columns: 80px 1fr;
            gap: 15px;
            align-items: center;
            background: rgba(58, 58, 106, 0.5);
            padding: 10px;
            border-radius: 8px;
        }
        .popular-article img {
            width: 80px;
            height: 60px;
            object-fit: cover;
        }
        .popular-article h4 {
            font-size: 0.95rem;
            margin: 0;
            border: none;
            padding: 0;
            color: #e0e0ff;
        }
        .footer-links {
            background: rgba(12, 12, 29, 0.9);
            padding: 40px 0;
            margin-top: 60px;
            border-top: 2px solid #2a2a4a;
        }
        .web-link {
            display: inline-block;
            margin: 10px 15px;
            padding: 12px 20px;
            background: rgba(42, 42, 74, 0.7);
            border-radius: 25px;
            border: 1px solid #4a4a8a;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: rgba(110, 231, 255, 0.15);
            border-color: #6ee7ff;
            transform: translateY(-5px);
        }
        footer {
            background: #0c0c1d;
            padding: 40px 0;
            text-align: center;
            border-top: 2px solid #2a2a4a;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 25px;
        }
        .copyright {
            color: #a0a0c0;
            font-size: 0.9rem;
            line-height: 1.8;
        }
        .social-links {
            display: flex;
            gap: 20px;
        }
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(58, 58, 106, 0.7);
            border-radius: 50%;
            font-size: 1.2rem;
        }
        .social-links a:hover {
            background: rgba(110, 231, 255, 0.3);
            transform: translateY(-5px) rotate(10deg);
        }
        @media (max-width: 992px) {
            .content {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            h1 {
                font-size: 2.2rem;
            }
            .nav-links {
                display: none;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background: rgba(12, 12, 29, 0.98);
                flex-direction: column;
                padding: 20px;
                border-top: 1px solid #2a2a4a;
                z-index: 999;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
        }
        @media (max-width: 768px) {
            body {
                padding-top: 70px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .article-content {
                padding: 20px;
            }
            .stats-box {
                grid-template-columns: 1fr;
            }
            .web-link {
                display: block;
                margin: 10px 0;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .article-content, .sidebar-widget, .interactive-section {
            animation: fadeIn 0.6s ease-out;
        }
