        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #0c1a2d 0%, #1a2b3e 100%);
            color: #e0e7ff;
            line-height: 1.8;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            text-decoration: none;
            color: #4fc3f7;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #29b6f6;
        }
        button, input, textarea, select {
            font-family: inherit;
        }
        .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 #1e88e5;
            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: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #1e88e5, #4fc3f7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: flex;
            align-items: center;
        }
        .logo i {
            margin-right: 10px;
            font-size: 2.5rem;
            color: #1e88e5;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 15px;
            border-radius: 20px;
            transition: all 0.3s;
        }
        .nav-desktop a:hover {
            background: #1e88e5;
            color: white;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #4fc3f7;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            background: rgba(12, 26, 45, 0.98);
            padding: 20px;
            display: none;
            flex-direction: column;
            gap: 20px;
            border-top: 1px solid #1e88e5;
            z-index: 999;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 15px;
            border-bottom: 1px solid #2a3c52;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .nav-mobile a:hover {
            background: #1a2b3e;
        }
        .breadcrumb {
            padding: 15px 0;
            background: #131f2e;
            margin-bottom: 20px;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 10px;
        }
        .breadcrumb li {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .breadcrumb a {
            color: #90caf9;
        }
        .breadcrumb .separator {
            color: #5d7a9c;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(20, 33, 51, 0.7);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid #2a3c52;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .widget {
            background: rgba(20, 33, 51, 0.7);
            border-radius: 15px;
            padding: 25px;
            border: 1px solid #2a3c52;
        }
        .widget h3 {
            color: #4fc3f7;
            border-bottom: 2px solid #1e88e5;
            padding-bottom: 10px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        h1 {
            font-size: 2.8rem;
            color: #4fc3f7;
            margin-bottom: 20px;
            line-height: 1.3;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
        }
        h2 {
            font-size: 2rem;
            color: #29b6f6;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #37474f;
        }
        h3 {
            font-size: 1.6rem;
            color: #81d4fa;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: #bbdefb;
            background: rgba(30, 136, 229, 0.1);
            padding: 20px;
            border-radius: 10px;
            border-left: 5px solid #1e88e5;
            margin-bottom: 30px;
        }
        strong {
            color: #ffcc80;
            font-weight: 700;
        }
        .highlight {
            background: rgba(255, 193, 7, 0.15);
            padding: 3px 8px;
            border-radius: 5px;
            font-weight: 600;
        }
        .note {
            background: rgba(76, 175, 80, 0.1);
            border-left: 5px solid #4caf50;
            padding: 20px;
            border-radius: 0 10px 10px 0;
            margin: 25px 0;
        }
        .note i {
            color: #4caf50;
            margin-right: 10px;
        }
        ul, ol {
            margin-left: 25px;
            margin-bottom: 1.5em;
        }
        li {
            margin-bottom: 0.8em;
        }
        .feature-img {
            width: 100%;
            border-radius: 15px;
            overflow: hidden;
            margin: 30px 0;
            border: 3px solid #1e88e5;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #90a4ae;
            margin-top: 10px;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 20px;
        }
        .input-group {
            display: flex;
        }
        .input-group input, textarea, select {
            flex: 1;
            padding: 15px;
            background: #1a2b3e;
            border: 1px solid #37474f;
            border-radius: 10px 0 0 10px;
            color: #fff;
            font-size: 1rem;
        }
        .input-group button {
            background: #1e88e5;
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 10px 10px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .input-group button:hover {
            background: #1565c0;
        }
        textarea {
            width: 100%;
            min-height: 150px;
            border-radius: 10px;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 10px;
            direction: rtl; 
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.3s;
        }
        .stars label:hover,
        .stars label:hover ~ label,
        .stars input:checked ~ label {
            color: #ff9800;
        }
        .comment-list {
            margin-top: 30px;
        }
        .comment {
            background: #1a2b3e;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
            border-left: 5px solid #5c6bc0;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            color: #b0bec5;
        }
        .footer-links {
            background: #131f2e;
            padding: 40px 0;
            margin-top: 50px;
        }
        .web-link-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: rgba(30, 136, 229, 0.1);
            padding: 15px;
            border-radius: 10px;
            border: 1px solid #37474f;
        }
        .web-link a {
            display: block;
            padding: 10px;
            color: #bbdefb;
            transition: all 0.3s;
            border-radius: 5px;
        }
        .web-link a:hover {
            background: #1e88e5;
            color: white;
            padding-left: 20px;
        }
        .site-footer {
            background: #0c1a2d;
            padding: 30px 0;
            text-align: center;
            border-top: 2px solid #1e88e5;
        }
        .footer-links a {
            margin: 0 15px;
            font-weight: 600;
        }
        .copyright {
            margin-top: 20px;
            color: #78909c;
            font-size: 0.9rem;
        }
        .text-center {
            text-align: center;
        }
        .mb-30 {
            margin-bottom: 30px;
        }
        .mt-40 {
            margin-top: 40px;
        }
        .emoji {
            font-size: 1.5em;
            vertical-align: middle;
        }
