* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
            line-height: 1.6;
        }
        :root {
            --primary: #4f46e5;
            --secondary: #10b981;
            --accent: #f59e0b;
            --dark: #1f2937;
            --light: #f9fafb;
            --gray: #6b7280;
            --transition: all 0.3s ease;
        }
        body {
            background-color: #f3f4f6;
            color: var(--dark);
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            padding: 0 15px;
        }
        header {
            background: linear-gradient(135deg, var(--primary), #3730a3);
            color: white;
            padding: 1.5rem 0;
            border-radius: 0 0 12px 12px;
            box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
            margin-bottom: 2rem;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--accent);
        }
        .logo span {
            background: linear-gradient(to right, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .search-box {
            display: flex;
            background: white;
            border-radius: 50px;
            overflow: hidden;
            max-width: 400px;
            flex-grow: 1;
            margin: 0 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        .search-box input {
            flex-grow: 1;
            border: none;
            padding: 12px 20px;
            font-size: 1rem;
            outline: none;
        }
        .search-box button {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 0 25px;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: #0da271;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            background: none;
            border: none;
            color: white;
        }
        nav {
            margin-top: 1.5rem;
        }
        .nav-main {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 5px;
            background: rgba(255,255,255,0.1);
            padding: 12px;
            border-radius: 10px;
        }
        .nav-main a {
            padding: 10px 18px;
            border-radius: 8px;
            font-weight: 600;
            transition: var(--transition);
            white-space: nowrap;
        }
        .nav-main a:hover,
        .nav-main a.active {
            background: white;
            color: var(--primary);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #d1d5db;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
            margin-bottom: 3rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        .content-area {
            background: white;
            padding: 2.5rem;
            border-radius: 16px;
            box-shadow: 0 6px 16px rgba(0,0,0,0.05);
        }
        h1 {
            color: var(--primary);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 6px solid var(--accent);
            padding-left: 20px;
        }
        h2 {
            color: var(--dark);
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--secondary);
        }
        h3 {
            color: var(--primary);
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            color: var(--dark);
            font-weight: 600;
            background: #f0f9ff;
            padding: 20px;
            border-radius: 10px;
            border-left: 5px solid var(--primary);
            margin-bottom: 2rem;
        }
        .highlight {
            background: linear-gradient(120deg, #fef3c7 0%, #fef3c7 100%);
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 700;
            color: #92400e;
        }
        .emoji {
            font-size: 1.4em;
            margin-right: 5px;
        }
        .feature-img {
            width: 100%;
            border-radius: 12px;
            margin: 2rem 0;
            border: 5px solid white;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 2.5rem 0;
            text-align: center;
        }
        .stat {
            background: #4f46e5;
            color: white;
            padding: 25px 15px;
            border-radius: 12px;
            box-shadow: 0 6px 12px rgba(79,70,229,0.3);
        }
        .stat:nth-child(2) {
            background: #10b981;
        }
        .stat:nth-child(3) {
            background: #f59e0b;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            display: block;
            line-height: 1;
        }
        .stat-label {
            font-size: 1.1rem;
            margin-top: 10px;
        }
        blockquote {
            border-left: 5px solid var(--secondary);
            padding: 20px;
            margin: 2rem 0;
            background: #f0fdf4;
            border-radius: 0 10px 10px 0;
            font-style: italic;
        }
        .sidebar {
            background: white;
            padding: 1.8rem;
            border-radius: 16px;
            box-shadow: 0 6px 16px rgba(0,0,0,0.05);
            align-self: start;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget-title {
            font-size: 1.4rem;
            color: var(--primary);
            margin-bottom: 1.2rem;
            padding-bottom: 8px;
            border-bottom: 2px solid #e5e7eb;
        }
        .rating-box {
            text-align: center;
            padding: 25px;
            background: #f8fafc;
            border-radius: 12px;
            margin-bottom: 25px;
        }
        .stars {
            color: #fbbf24;
            font-size: 2rem;
            margin: 15px 0;
        }
        .rating-text {
            font-size: 1.2rem;
            font-weight: 600;
        }
        .btn {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            font-size: 1.1rem;
            margin-top: 10px;
            width: 100%;
        }
        .btn:hover {
            background: #4338ca;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(79,70,229,0.3);
        }
        .btn-secondary {
            background: var(--secondary);
        }
        .btn-secondary:hover {
            background: #0da271;
        }
        .comment-form, .score-form {
            background: #f8fafc;
            padding: 25px;
            border-radius: 12px;
            margin-top: 25px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
        }
        input, textarea, select {
            width: 100%;
            padding: 14px;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(79,70,229,0.1);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 3rem 0;
        }
        .web-link {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
            transition: var(--transition);
            border-left: 4px solid var(--primary);
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        }
        .web-link a {
            color: var(--primary);
            font-weight: 600;
            display: block;
            font-size: 1.1rem;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 3rem 0 2rem;
            border-radius: 12px 12px 0 0;
            margin-top: 3rem;
            text-align: center;
        }
        .copyright {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #374151;
            color: #9ca3af;
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                align-items: stretch;
                gap: 20px;
            }
            .search-box {
                margin: 0;
                order: 3;
                max-width: 100%;
            }
            .mobile-toggle {
                display: block;
                position: absolute;
                top: 30px;
                right: 20px;
            }
            .logo {
                font-size: 1.8rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .content-area {
                padding: 1.8rem;
            }
            .nav-main {
                flex-direction: column;
                display: none;
                margin-top: 1rem;
            }
            .nav-main.active {
                display: flex;
            }
            .stats-box {
                grid-template-columns: 1fr;
            }
            .footer-links {
                grid-template-columns: 1fr;
            }
        }
