* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        :root {
            --primary: #e63946;
            --secondary: #1d3557;
            --accent: #a8dadc;
            --light: #f1faee;
            --dark: #0d1b2a;
            --gray: #8d99ae;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.7;
        }
        a {
            text-decoration: none;
            color: var(--secondary);
            transition: var(--transition);
        }
        a:hover {
            color: var(--primary);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            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 a:hover {
            color: var(--accent);
        }
        .logo i {
            color: var(--primary);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .desktop-nav a:hover, .desktop-nav a.active {
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--accent);
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: var(--secondary);
            padding: 1rem;
            border-radius: 0 0 8px 8px;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: white;
            padding: 0.75rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .mobile-nav a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--gray);
        }
        .breadcrumb a {
            color: var(--gray);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb span {
            margin: 0 5px;
        }
        .search-container {
            background: var(--light);
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: var(--shadow);
        }
        .search-box {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-box input {
            flex: 1;
            padding: 15px;
            border: 2px solid var(--accent);
            border-radius: 8px 0 0 8px;
            font-size: 1rem;
            outline: none;
        }
        .search-box button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: #c1121f;
        }
        main {
            padding: 2rem 0;
        }
        article {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
        }
        h1 {
            color: var(--secondary);
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }
        h2 {
            color: var(--secondary);
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--accent);
        }
        h3 {
            color: var(--dark);
            font-size: 1.4rem;
            margin: 1.5rem 0 0.75rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(120deg, var(--accent) 0%, transparent 100%);
            padding: 1.5rem;
            border-left: 5px solid var(--primary);
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .char-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        .char-card {
            background: var(--light);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .char-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }
        .char-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-bottom: 4px solid var(--primary);
        }
        .char-info {
            padding: 1.5rem;
        }
        .char-info h3 {
            color: var(--secondary);
            margin-top: 0;
        }
        .char-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: 10px 0;
        }
        .tag {
            background: var(--accent);
            color: var(--secondary);
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .quote {
            font-style: italic;
            padding: 2rem;
            background: #f8f9fa;
            border-radius: 10px;
            margin: 2rem 0;
            border-left: 5px solid var(--primary);
            font-size: 1.1rem;
        }
        .author {
            text-align: right;
            font-weight: bold;
            color: var(--secondary);
            margin-top: 1rem;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: var(--shadow);
        }
        .stats-table th, .stats-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        .stats-table th {
            background: var(--secondary);
            color: white;
        }
        .stats-table tr:nth-child(even) {
            background: #f9f9f9;
        }
        .stats-table tr:hover {
            background: #e3f2fd;
        }
        .interaction {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: var(--shadow);
            margin-top: 3rem;
        }
        .rating-box {
            text-align: center;
            margin-bottom: 2rem;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin: 1rem 0;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star.active, .star:hover {
            color: #ffc107;
        }
        .comment-form, .rating-form {
            display: grid;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        label {
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--secondary);
        }
        input, textarea, select {
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 6px;
            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(230, 57, 70, 0.2);
        }
        button[type="submit"] {
            background: var(--primary);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 1rem;
        }
        button[type="submit"]:hover {
            background: #c1121f;
        }
        .footer-links {
            background: var(--light);
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .web-link {
            background: white;
            padding: 1.2rem;
            margin-bottom: 1rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .web-link:hover {
            background: #e9ecef;
            transform: translateX(10px);
        }
        .web-link a {
            font-size: 1.1rem;
            font-weight: 600;
            display: block;
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 3rem 0 1.5rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section h4 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: var(--accent);
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section ul li {
            margin-bottom: 0.8rem;
        }
        .footer-section a {
            color: #ccc;
        }
        .footer-section a:hover {
            color: white;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.6rem; }
            .char-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .header-top { padding: 0 20px; }
            article, .interaction { padding: 1.5rem; }
            .char-grid { grid-template-columns: 1fr; }
            .footer-content { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            .search-box { flex-direction: column; }
            .search-box input { border-radius: 8px; margin-bottom: 10px; }
            .search-box button { border-radius: 8px; padding: 15px; }
        }
