* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', system-ui, sans-serif;
            line-height: 1.6;
        }
        body {
            background-color: #0f172a;
            color: #e2e8f0;
            max-width: 100%;
            overflow-x: hidden;
        }
        a {
            color: #60a5fa;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #38bdf8;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            padding: 1.5rem 0;
            border-bottom: 3px solid #3b82f6;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #60a5fa, #38bdf8);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
        }
        .logo-icon {
            margin-right: 10px;
            font-size: 2.5rem;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0.8rem;
            border-radius: 6px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .main-nav a:hover {
            background-color: rgba(96, 165, 250, 0.15);
        }
        .burger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #60a5fa;
        }
        .breadcrumb {
            background-color: rgba(30, 41, 59, 0.7);
            padding: 1rem;
            border-radius: 8px;
            margin: 1.5rem 0;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #cbd5e1;
        }
        .breadcrumb i {
            margin: 0 8px;
            color: #94a3b8;
        }
        .search-section {
            background: linear-gradient(90deg, #1e293b, #334155);
            padding: 2.5rem;
            border-radius: 12px;
            margin: 2rem 0;
            text-align: center;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        }
        .search-section h2 {
            margin-bottom: 1.5rem;
            color: #38bdf8;
            font-size: 1.8rem;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            border-radius: 50px 0 0 50px;
            background-color: #f8fafc;
            font-size: 1.1rem;
            color: #1e293b;
        }
        .search-button {
            padding: 1rem 2rem;
            border: none;
            border-radius: 0 50px 50px 0;
            background: linear-gradient(90deg, #3b82f6, #1d4ed8);
            color: white;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .search-button:hover {
            background: linear-gradient(90deg, #1d4ed8, #1e40af);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2.5rem 0;
        }
        .article-content {
            background-color: rgba(30, 41, 59, 0.7);
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            border-left: 5px solid #3b82f6;
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            color: #7dd3fc;
            line-height: 1.2;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }
        h2 {
            font-size: 2.1rem;
            margin: 2.5rem 0 1.2rem;
            color: #38bdf8;
            border-bottom: 2px solid #475569;
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
            color: #60a5fa;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.15rem;
            text-align: justify;
            color: #cbd5e1;
        }
        .highlight {
            background-color: rgba(96, 165, 250, 0.15);
            border-left: 4px solid #60a5fa;
            padding: 1.2rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
            font-weight: 600;
        }
        .tip {
            background-color: rgba(34, 197, 94, 0.15);
            border-left: 4px solid #22c55e;
            padding: 1.2rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .warning {
            background-color: rgba(239, 68, 68, 0.15);
            border-left: 4px solid #ef4444;
            padding: 1.2rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .map-image {
            width: 100%;
            height: auto;
            border-radius: 12px;
            border: 3px solid #475569;
            margin: 2rem 0;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
            transition: transform 0.5s ease;
        }
        .map-image:hover {
            transform: scale(1.02);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #94a3b8;
            margin-top: -1rem;
            margin-bottom: 2rem;
        }
        .emoji {
            font-size: 1.3em;
            margin-right: 8px;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .widget {
            background-color: rgba(30, 41, 59, 0.9);
            padding: 1.8rem;
            border-radius: 12px;
            border-top: 4px solid #3b82f6;
        }
        .widget h3 {
            margin-top: 0;
            color: #38bdf8;
            font-size: 1.4rem;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 2rem;
            color: #94a3b8;
            cursor: pointer;
            margin: 1rem 0;
        }
        .stars .star:hover,
        .stars .star.active {
            color: #fbbf24;
        }
        .rating-widget button {
            background: linear-gradient(90deg, #f59e0b, #d97706);
            color: white;
            border: none;
            padding: 0.9rem;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .rating-widget button:hover {
            background: linear-gradient(90deg, #d97706, #b45309);
        }
        .quick-links ul {
            list-style: none;
        }
        .quick-links li {
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
        }
        .quick-links li:before {
            content: '➤';
            position: absolute;
            left: 0;
            color: #60a5fa;
        }
        .comments-section {
            background-color: rgba(30, 41, 59, 0.7);
            padding: 2.5rem;
            border-radius: 15px;
            margin: 2.5rem 0;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            margin-bottom: 2.5rem;
        }
        .comment-form input,
        .comment-form textarea {
            padding: 1rem;
            border-radius: 8px;
            border: 1px solid #475569;
            background-color: #1e293b;
            color: #e2e8f0;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .comment-form button {
            align-self: flex-start;
            background: linear-gradient(90deg, #10b981, #059669);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .comment-form button:hover {
            background: linear-gradient(90deg, #059669, #047857);
        }
        .comment {
            border-bottom: 1px solid #475569;
            padding: 1.5rem 0;
        }
        .comment:last-child {
            border-bottom: none;
        }
        .comment-author {
            font-weight: 700;
            color: #7dd3fc;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .comment-date {
            color: #94a3b8;
            font-size: 0.9rem;
        }
        .comment-text {
            margin-top: 0.8rem;
            color: #cbd5e1;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            margin: 3rem 0 2rem;
            padding: 2rem;
            background-color: rgba(15, 23, 42, 0.9);
            border-radius: 12px;
            border-top: 4px solid #3b82f6;
        }
        .web-link {
            background-color: rgba(30, 41, 59, 0.8);
            padding: 1.2rem;
            border-radius: 8px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid #334155;
        }
        .web-link:hover {
            background-color: rgba(59, 130, 246, 0.2);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #e2e8f0;
            font-weight: 600;
            font-size: 1rem;
        }
        .site-footer {
            background-color: #0f172a;
            padding: 2.5rem 0;
            text-align: center;
            border-top: 3px solid #1e293b;
            margin-top: 3rem;
        }
        .copyright {
            color: #94a3b8;
            font-size: 0.95rem;
            margin-top: 1.5rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .footer-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #1e293b;
                padding: 1.5rem;
                border-top: 2px solid #3b82f6;
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
            }
            .main-nav.active ul {
                display: flex;
            }
            .burger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input,
            .search-button {
                border-radius: 50px;
                width: 100%;
                margin-bottom: 10px;
            }
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .footer-links {
                grid-template-columns: 1fr;
            }
            .article-content,
            .comments-section,
            .search-section {
                padding: 1.5rem;
            }
            .header-content {
                flex-direction: column;
                gap: 1rem;
            }
            .logo a {
                font-size: 1.8rem;
            }
        }
