* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        :root {
            --primary: #1a237e;
            --secondary: #ff5722;
            --accent: #4caf50;
            --dark: #0d1526;
            --light: #f5f7fa;
            --text: #333333;
            --text-light: #666666;
            --shadow: 0 4px 12px rgba(0,0,0,0.08);
            --radius: 8px;
            --transition: all 0.3s ease;
        }
        body {
            background-color: #f9f9f9;
            color: var(--text);
            line-height: 1.7;
            font-size: 1.05rem;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        a {
            text-decoration: none;
            color: var(--primary);
            transition: var(--transition);
        }
        a:hover {
            color: var(--secondary);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0,0,0,0);
            border: 0;
        }
        header {
            background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--secondary);
        }
        .logo span {
            background: linear-gradient(to right, #ff9800, #ff5722);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: var(--transition);
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background: var(--dark);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: var(--shadow);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 1rem;
        }
        .mobile-nav a {
            color: white;
            font-weight: 600;
            display: block;
            padding: 0.5rem;
            border-radius: var(--radius);
        }
        .mobile-nav a:hover {
            background: rgba(255,255,255,0.1);
        }
        .breadcrumb {
            padding: 1rem 0;
            background: #eef2f7;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin: 0 10px;
            color: var(--text-light);
        }
        .breadcrumb a {
            color: var(--text-light);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .search-container {
            background: white;
            padding: 2rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin: 2rem 0;
            text-align: center;
        }
        .search-box {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-box input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: 2px solid #ddd;
            border-radius: var(--radius) 0 0 var(--radius);
            font-size: 1rem;
            outline: none;
        }
        .search-box input:focus {
            border-color: var(--primary);
        }
        .search-box button {
            background: linear-gradient(to right, var(--primary), var(--dark));
            color: white;
            border: none;
            padding: 0 2rem;
            border-radius: 0 var(--radius) var(--radius) 0;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: linear-gradient(to right, var(--secondary), #e64a19);
        }
        main {
            padding: 2rem 0;
        }
        article {
            background: white;
            border-radius: var(--radius);
            padding: 2.5rem;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
        }
        h1 {
            color: var(--primary);
            font-size: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h2 {
            color: var(--dark);
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #eee;
        }
        h3 {
            color: var(--primary);
            font-size: 1.4rem;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(120deg, #e1f5fe 0%, #fff8e1 100%);
            border-left: 4px solid var(--accent);
            padding: 1.5rem;
            border-radius: 0 var(--radius) var(--radius) 0;
            margin: 1.5rem 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .feature-img {
            width: 100%;
            max-width: 800px;
            margin: 2rem auto;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .feature-img img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .feature-img:hover img {
            transform: scale(1.03);
        }
        .figcaption {
            text-align: center;
            font-style: italic;
            color: var(--text-light);
            padding: 0.5rem;
            background: #f5f5f5;
        }
        .content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .card {
            background: var(--light);
            border-radius: var(--radius);
            padding: 1.5rem;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid #e0e0e0;
        }
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.12);
        }
        .card h3 {
            color: var(--secondary);
            font-size: 1.3rem;
        }
        .stats {
            display: flex;
            justify-content: space-around;
            background: var(--dark);
            color: white;
            padding: 1.5rem;
            border-radius: var(--radius);
            margin: 2rem 0;
            text-align: center;
        }
        .stat-item h4 {
            font-size: 2rem;
            color: var(--secondary);
        }
        .rating-section, .comments-section {
            background: white;
            padding: 2rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin: 2rem 0;
        }
        .rating-container {
            display: flex;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
        }
        .stars {
            display: flex;
            gap: 5px;
            font-size: 1.8rem;
            color: #ffc107;
        }
        .rating-form, .comment-form {
            margin-top: 1.5rem;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: var(--radius);
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .btn {
            background: linear-gradient(to right, var(--primary), var(--dark));
            color: white;
            border: none;
            padding: 0.8rem 1.8rem;
            border-radius: var(--radius);
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .btn:hover {
            background: linear-gradient(to right, var(--secondary), #e64a19);
            transform: translateY(-2px);
        }
        .comments-list {
            margin-top: 2rem;
        }
        .comment {
            border-bottom: 1px solid #eee;
            padding: 1rem 0;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
        }
        .comment-author {
            font-weight: 600;
            color: var(--primary);
        }
        .comment-date {
            color: var(--text-light);
            font-size: 0.9rem;
        }
        .footer-links {
            background: var(--light);
            padding: 2rem 0;
            margin-top: 2rem;
        }
        .web-link {
            display: inline-block;
            background: white;
            margin: 0.5rem;
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid #e0e0e0;
        }
        .web-link:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }
        .web-link a {
            color: inherit;
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 2rem 0;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }
        .social-links {
            display: flex;
            gap: 1rem;
            font-size: 1.5rem;
        }
        .social-links a {
            color: white;
            transition: var(--transition);
        }
        .social-links a:hover {
            color: var(--secondary);
            transform: scale(1.2);
        }
        .copyright {
            color: #aaa;
            font-size: 0.9rem;
            margin-top: 1rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.6rem; }
            article { padding: 1.5rem; }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .mobile-menu-btn { display: block; }
            .header-container { padding: 0 15px; }
            .content-grid { grid-template-columns: 1fr; }
            .rating-container { flex-direction: column; align-items: flex-start; }
            .stats { flex-direction: column; gap: 1rem; }
            .search-box { flex-direction: column; }
            .search-box input { border-radius: var(--radius); margin-bottom: 10px; }
            .search-box button { border-radius: var(--radius); padding: 1rem; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 15px; }
            h1 { font-size: 1.7rem; }
            .highlight { padding: 1rem; }
        }
