        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
        }
        body {
            background: linear-gradient(135deg, #1a237e 0%, #311b92 100%);
            color: #f5f5f5;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #ffcc00;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #ffeb3b;
            text-shadow: 0 0 8px rgba(255, 235, 59, 0.6);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(26, 35, 126, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #ffcc00;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ffcc00, #ffeb3b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .logo:hover {
            transform: scale(1.03);
        }
        .search-form {
            display: flex;
            width: 300px;
        }
        .search-input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid #ffcc00;
            border-radius: 30px 0 0 30px;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            font-size: 1rem;
        }
        .search-button {
            background: #ffcc00;
            color: #1a237e;
            border: none;
            border-radius: 0 30px 30px 0;
            padding: 0 20px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-button:hover {
            background: #ffeb3b;
        }
        .nav-container {
            position: relative;
        }
        .main-nav {
            display: flex;
            justify-content: center;
            gap: 30px;
            padding: 15px 0;
            list-style: none;
            background: rgba(48, 63, 159, 0.9);
            border-radius: 10px;
            margin-top: 10px;
        }
        .main-nav li a {
            padding: 10px 15px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            border-radius: 5px;
        }
        .main-nav li a:hover {
            background: rgba(255, 204, 0, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #ffcc00;
            cursor: pointer;
            padding: 5px;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #bbbbbb;
        }
        .breadcrumb a:hover {
            color: #ffcc00;
        }
        main {
            flex: 1;
            padding: 30px 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding: 30px;
            background: linear-gradient(rgba(48, 63, 159, 0.8), rgba(26, 35, 126, 0.9));
            border-radius: 15px;
            border-left: 6px solid #ffcc00;
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            color: #ffeb3b;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            color: #bbbbbb;
            font-size: 0.95rem;
            margin-top: 15px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        h2, h3 {
            color: #ffcc00;
            margin: 30px 0 15px;
            padding-bottom: 8px;
            border-bottom: 2px dashed rgba(255, 204, 0, 0.5);
        }
        h2 {
            font-size: 2rem;
        }
        h3 {
            font-size: 1.6rem;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(255, 204, 0, 0.15);
            border-left: 4px solid #ffcc00;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .featured-image {
            margin: 30px auto;
            border-radius: 10px;
            overflow: hidden;
            border: 3px solid #ffcc00;
            max-width: 800px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
        }
        .featured-image img {
            width: 100%;
            transition: transform 0.5s;
        }
        .featured-image:hover img {
            transform: scale(1.03);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #bbbbbb;
            padding: 10px;
            background: rgba(0, 0, 0, 0.3);
        }
        .sidebar {
            background: rgba(255, 255, 255, 0.05);
            padding: 25px;
            border-radius: 15px;
            height: fit-content;
        }
        .sidebar-widget {
            margin-bottom: 30px;
        }
        .sidebar h3 {
            font-size: 1.4rem;
            margin-top: 0;
        }
        .rating-widget, .comment-widget {
            background: rgba(48, 63, 159, 0.6);
            padding: 20px;
            border-radius: 10px;
        }
        .stars {
            display: flex;
            gap: 5px;
            margin: 15px 0;
            justify-content: center;
        }
        .star {
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffcc00;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .rating-form input, .comment-form input, .comment-form textarea {
            padding: 12px;
            border-radius: 8px;
            border: 1px solid #555;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .submit-button {
            background: #ffcc00;
            color: #1a237e;
            border: none;
            padding: 12px;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .submit-button:hover {
            background: #ffeb3b;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin: 40px 0;
        }
        @media (max-width: 768px) {
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            background: rgba(255, 204, 0, 0.2);
            transform: translateY(-5px);
        }
        .site-footer {
            background: rgba(18, 25, 80, 0.95);
            padding: 30px 0;
            margin-top: 50px;
            border-top: 2px solid #ffcc00;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .copyright {
            color: #bbbbbb;
            font-size: 0.9rem;
        }
        .social-links {
            display: flex;
            gap: 15px;
        }
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            font-size: 1.2rem;
        }
        .social-links a:hover {
            background: #ffcc00;
            color: #1a237e;
            transform: rotate(15deg);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .header-top {
                flex-direction: column;
                gap: 20px;
            }
            .search-form {
                width: 100%;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 15px;
                right: 20px;
            }
            .main-nav {
                flex-direction: column;
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(48, 63, 159, 0.98);
                z-index: 999;
                border-radius: 0 0 10px 10px;
            }
            .main-nav.active {
                display: flex;
            }
            .article-content, .sidebar {
                padding: 20px;
            }
        }
