* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        :root {
            --primary: #d4af37;
            --secondary: #800000;
            --dark: #1a1a1a;
            --light: #f5f5f5;
            --gray: #666;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        body {
            background-color: #111;
            color: #eee;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(to right, var(--dark), #2a2a2a);
            padding: 15px 0;
            border-bottom: 3px solid var(--primary);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(45deg, #d4af37, #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .logo span {
            color: #800000;
            -webkit-text-fill-color: #800000;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 25px;
        }
        .nav-links a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 5px;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--primary);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
            border-bottom: 1px solid #333;
        }
        .breadcrumb a {
            color: #ccc;
        }
        .search-box {
            background: #222;
            padding: 30px;
            margin: 20px 0;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .search-box h2 {
            margin-bottom: 15px;
            color: var(--primary);
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 15px;
            border: 2px solid var(--primary);
            border-radius: 5px 0 0 5px;
            background: #333;
            color: white;
            font-size: 1rem;
        }
        .search-form button {
            background: var(--primary);
            color: var(--dark);
            border: none;
            padding: 0 25px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: #ffd700;
        }
        main {
            padding: 30px 0;
        }
        article {
            background: #1e1e1e;
            border-radius: 15px;
            padding: 40px;
            box-shadow: var(--shadow);
            margin-bottom: 30px;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 20px;
            line-height: 1.2;
            text-align: center;
        }
        h2 {
            font-size: 2rem;
            color: #d4af37;
            margin: 40px 0 20px;
            border-left: 5px solid var(--secondary);
            padding-left: 15px;
        }
        h3 {
            font-size: 1.6rem;
            color: #ffcc66;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(212, 175, 55, 0.1);
            border-left: 4px solid var(--primary);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            border: 3px solid var(--primary);
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            transition: var(--transition);
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        ul, ol {
            margin-left: 30px;
            margin-bottom: 20px;
        }
        li {
            margin-bottom: 10px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .stat-card {
            background: #252525;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            border-top: 5px solid var(--primary);
        }
        .stat-card i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        .rating {
            color: #ffd700;
            font-size: 1.2rem;
            margin: 15px 0;
        }
        .user-interaction {
            background: #252525;
            padding: 30px;
            border-radius: 15px;
            margin-top: 40px;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
        }
        textarea, input[type="text"], input[type="email"] {
            padding: 15px;
            margin-bottom: 15px;
            background: #333;
            border: 1px solid #555;
            border-radius: 5px;
            color: white;
            font-size: 1rem;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            margin-bottom: 15px;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #444;
            cursor: pointer;
            transition: var(--transition);
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: #ffd700;
        }
        button[type="submit"] {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1.1rem;
        }
        button[type="submit"]:hover {
            background: #a00000;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            margin: 40px 0;
            padding: 30px;
            background: #1a1a1a;
            border-radius: 10px;
        }
        .web-link {
            background: #252525;
            padding: 15px;
            border-radius: 5px;
            transition: var(--transition);
        }
        .web-link:hover {
            background: #2a2a2a;
            transform: translateY(-3px);
        }
        footer {
            background: #000;
            padding: 40px 0 20px;
            text-align: center;
            border-top: 2px solid var(--primary);
        }
        .copyright {
            color: #aaa;
            font-size: 0.9rem;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #333;
        }
        @media (max-width: 992px) {
            .nav-links {
                position: fixed;
                top: 80px;
                right: -100%;
                flex-direction: column;
                background: var(--dark);
                width: 70%;
                height: calc(100vh - 80px);
                padding-top: 30px;
                transition: 0.5s;
                box-shadow: -5px 0 15px rgba(0,0,0,0.5);
            }
            .nav-links.active {
                right: 0;
            }
            .nav-links li {
                margin: 15px 0;
                text-align: center;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article {
                padding: 25px;
            }
        }
        @media (max-width: 576px) {
            .search-form {
                flex-direction: column;
            }
            .search-form input {
                border-radius: 5px;
                margin-bottom: 10px;
            }
            .search-form button {
                border-radius: 5px;
                padding: 15px;
            }
            .interaction-grid {
                grid-template-columns: 1fr;
            }
        }
