* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Arial', sans-serif;
            line-height: 1.6;
        }
        body {
            background: linear-gradient(135deg, #0c1a2d 0%, #1a3a5f 100%);
            color: #e0e0e0;
            min-height: 100vh;
            overflow-x: hidden;
        }
        a {
            color: #00a8ff;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffcc00;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(12, 26, 45, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #ff4655;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff4655, #ffcc00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
        }
        .logo span {
            color: #00a8ff;
            -webkit-text-fill-color: #00a8ff;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .main-nav a:hover {
            background: rgba(255, 70, 85, 0.2);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #ffcc00;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ffcc00;
        }
        .breadcrumb i {
            margin: 0 8px;
        }
        .hero {
            text-align: center;
            padding: 60px 20px;
            background: radial-gradient(circle at center, rgba(26, 58, 95, 0.7) 0%, rgba(12, 26, 45, 0) 70%);
            border-bottom: 1px solid #2a4a6e;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            color: #ffffff;
            text-shadow: 0 4px 8px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #cccccc;
        }
        .search-box {
            max-width: 600px;
            margin: 40px auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }
        .search-box input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1.1rem;
            background: rgba(255,255,255,0.1);
            color: white;
            backdrop-filter: blur(5px);
        }
        .search-box button {
            background: linear-gradient(90deg, #ff4655, #ff8c00);
            color: white;
            border: none;
            padding: 0 35px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .search-box button:hover {
            background: linear-gradient(90deg, #ff8c00, #ff4655);
            letter-spacing: 1px;
        }
        .content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        .article-main {
            background: rgba(30, 40, 60, 0.7);
            border-radius: 15px;
            padding: 35px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.4);
            border: 1px solid #3a506b;
        }
        .article-main h2, .article-main h3 {
            color: #ffcc00;
            margin-top: 35px;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ff4655;
        }
        .article-main h2 {
            font-size: 2.2rem;
        }
        .article-main h3 {
            font-size: 1.7rem;
        }
        .article-main p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            text-align: justify;
            color: #d0d0d0;
        }
        .highlight {
            background: rgba(255, 204, 0, 0.1);
            border-left: 5px solid #ffcc00;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .highlight strong {
            color: #ffcc00;
        }
        .image-container {
            text-align: center;
            margin: 35px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            border: 2px solid #ff4655;
            transition: transform 0.5s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .emoji {
            font-size: 1.3rem;
            margin-right: 8px;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .widget {
            background: rgba(30, 40, 60, 0.7);
            border-radius: 15px;
            padding: 25px;
            border: 1px solid #3a506b;
        }
        .widget h3 {
            color: #00a8ff;
            margin-bottom: 20px;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 2rem;
            color: #555;
            margin: 10px 0;
        }
        .stars i {
            cursor: pointer;
            transition: color 0.3s;
        }
        .stars i:hover, .stars i.active {
            color: #ffcc00;
        }
        .rating-form input, .comment-form input, .comment-form textarea {
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #3a506b;
            background: rgba(255,255,255,0.05);
            color: white;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .btn-submit {
            background: linear-gradient(90deg, #00a8ff, #0097e6);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .btn-submit:hover {
            background: linear-gradient(90deg, #0097e6, #00a8ff);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,168,255,0.4);
        }
        .footer-links {
            background: rgba(20, 30, 48, 0.9);
            padding: 40px 0;
            border-top: 2px solid #ff4655;
            border-bottom: 1px solid #2a4a6e;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            padding: 15px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: rgba(255, 70, 85, 0.2);
            transform: translateX(5px);
        }
        .site-footer {
            text-align: center;
            padding: 30px 0;
            color: #aaa;
            font-size: 0.9rem;
        }
        .site-footer a {
            color: #00a8ff;
        }
        @media (max-width: 992px) {
            .content {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
        }
        @media (max-width: 768px) {
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(12, 26, 45, 0.98);
                padding: 20px;
                border-top: 1px solid #ff4655;
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            }
            .main-nav.active ul {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .article-main {
                padding: 25px;
            }
            .article-main h2 {
                font-size: 1.8rem;
            }
        }
