* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
            color: #f0f0f0;
            line-height: 1.8;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #00eeff;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #ff6b9d;
            text-shadow: 0 0 8px rgba(255,107,157,0.7);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(10, 10, 35, 0.95);
            padding: 15px 0;
            border-bottom: 3px solid #00eeff;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #00eeff, #ff6b9d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .logo span {
            color: #fff;
        }
        .desktop-nav {
            display: flex;
            gap: 30px;
        }
        .desktop-nav a {
            font-size: 1.1rem;
            padding: 8px 15px;
            border-radius: 20px;
            border: 1px solid transparent;
        }
        .desktop-nav a:hover {
            border-color: #00eeff;
            background: rgba(0, 238, 255, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #00eeff;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: rgba(10, 10, 35, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid #302b63;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 15px;
            border-bottom: 1px solid #302b63;
            font-size: 1.1rem;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #00eeff;
        }
        main {
            flex: 1;
            padding: 30px 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding: 20px;
            background: rgba(255,255,255,0.05);
            border-radius: 15px;
            border-left: 5px solid #ff6b9d;
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            color: #00eeff;
            text-shadow: 0 0 10px rgba(0, 238, 255, 0.5);
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            font-size: 0.9rem;
            color: #ccc;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        article {
            background: rgba(20, 20, 50, 0.7);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        h2 {
            font-size: 2rem;
            color: #ff6b9d;
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #00eeff;
        }
        h3 {
            font-size: 1.5rem;
            color: #00eeff;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: rgba(255, 107, 157, 0.2);
            padding: 15px;
            border-radius: 10px;
            border-left: 4px solid #ff6b9d;
            margin: 20px 0;
            font-weight: bold;
        }
        .emoji {
            font-size: 1.3em;
            margin-right: 5px;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        .article-img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            border: 3px solid #00eeff;
            box-shadow: 0 5px 15px rgba(0,0,0,0.7);
            transition: transform 0.5s;
        }
        .article-img:hover {
            transform: scale(1.02);
        }
        ul, ol {
            padding-left: 30px;
            margin-bottom: 20px;
        }
        li {
            margin-bottom: 10px;
        }
        blockquote {
            border-left: 5px solid #00eeff;
            padding-left: 20px;
            margin: 25px 0;
            font-style: italic;
            color: #ccc;
            background: rgba(0, 238, 255, 0.05);
            padding: 20px;
            border-radius: 0 10px 10px 0;
        }
        aside {
            background: rgba(20, 20, 50, 0.7);
            padding: 25px;
            border-radius: 15px;
            height: fit-content;
            position: sticky;
            top: 150px;
        }
        .sidebar-section {
            margin-bottom: 30px;
        }
        .sidebar-section h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #ff6b9d;
        }
        .search-box {
            display: flex;
            margin-bottom: 20px;
        }
        .search-box input {
            flex: 1;
            padding: 12px;
            border: 2px solid #00eeff;
            border-right: none;
            border-radius: 8px 0 0 8px;
            background: rgba(255,255,255,0.1);
            color: #fff;
            font-size: 1rem;
        }
        .search-box button {
            background: #00eeff;
            color: #000;
            border: none;
            padding: 0 20px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #ff6b9d;
        }
        .rating-widget {
            text-align: center;
            padding: 20px;
            background: rgba(0,0,0,0.3);
            border-radius: 10px;
        }
        .stars {
            font-size: 2rem;
            color: #ffd700;
            margin: 15px 0;
        }
        .stars i {
            cursor: pointer;
            margin: 0 3px;
            transition: transform 0.2s;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .comment-form textarea {
            width: 100%;
            height: 120px;
            padding: 15px;
            border: 2px solid #302b63;
            border-radius: 8px;
            background: rgba(255,255,255,0.05);
            color: #fff;
            font-size: 1rem;
            margin-bottom: 15px;
            resize: vertical;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(90deg, #00eeff, #ff6b9d);
            color: #000;
            padding: 12px 25px;
            border-radius: 8px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            text-align: center;
            font-size: 1rem;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255,107,157,0.4);
        }
        footer {
            background: rgba(5, 5, 20, 0.98);
            padding: 40px 0 20px;
            margin-top: 50px;
            border-top: 3px solid #ff6b9d;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            padding: 20px;
            border-radius: 10px;
            transition: all 0.3s;
            border: 1px solid transparent;
        }
        .web-link:hover {
            border-color: #00eeff;
            transform: translateY(-5px);
            background: rgba(0, 238, 255, 0.1);
        }
        .web-link a {
            display: block;
            font-size: 1.1rem;
            color: #f0f0f0;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #302b63;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
            h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .header-content {
                flex-wrap: wrap;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .article-meta {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .footer-links {
                grid-template-columns: 1fr;
            }
            .container {
                padding: 0 15px;
            }
            article, aside {
                padding: 20px;
            }
        }
