        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #e0e0e0;
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
            background-attachment: fixed;
            min-height: 100vh;
            overflow-x: hidden;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #74c0fc;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
        }
        h1, h2, h3, h4 {
            color: #ffffff;
            margin-bottom: 1.2rem;
            line-height: 1.3;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            background: linear-gradient(90deg, #ff6b6b, #4dabf7);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-align: center;
            margin-top: 1rem;
        }
        h2 {
            font-size: 2.2rem;
            color: #4dabf7;
            border-left: 5px solid #ff6b6b;
            padding-left: 15px;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #74c0fc;
        }
        h4 {
            font-size: 1.4rem;
            color: #a5d8ff;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        ul, ol {
            margin-bottom: 1.5rem;
            padding-left: 2rem;
        }
        li {
            margin-bottom: 0.8rem;
        }
        blockquote {
            border-left: 4px solid #ff6b6b;
            padding: 20px 30px;
            margin: 30px 0;
            background: rgba(255, 107, 107, 0.05);
            border-radius: 0 8px 8px 0;
            font-style: italic;
            color: #ccc;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(255,107,107,0.2), rgba(77,171,247,0.2));
            padding: 20px;
            border-radius: 10px;
            margin: 25px 0;
            border: 1px solid rgba(255,255,255,0.1);
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background: linear-gradient(90deg, #ff6b6b, #4dabf7);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
            text-align: center;
        }
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255, 107, 107, 0.5);
            color: white;
        }
        header {
            background: rgba(10, 10, 20, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: #4dabf7;
            text-shadow: 0 0 10px rgba(77, 171, 247, 0.5);
        }
        .logo span {
            color: #ff6b6b;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            color: #e0e0e0;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #ff6b6b, #4dabf7);
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            color: #4dabf7;
            cursor: pointer;
            background: none;
            border: none;
        }
        .mobile-nav {
            display: none;
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: rgba(10, 10, 20, 0.98);
            padding: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            z-index: 999;
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 20px;
        }
        .mobile-nav a {
            color: #e0e0e0;
            font-size: 1.3rem;
            display: block;
            padding: 10px;
            border-radius: 5px;
            transition: background 0.3s;
        }
        .mobile-nav a:hover {
            background: rgba(77, 171, 247, 0.2);
        }
        .breadcrumb {
            padding: 15px 20px;
            background: rgba(0, 0, 0, 0.3);
            font-size: 0.95rem;
            color: #aaa;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .breadcrumb a {
            color: #74c0fc;
        }
        .breadcrumb span {
            margin: 0 8px;
            color: #666;
        }
        .hero {
            padding: 80px 20px;
            text-align: center;
            background: radial-gradient(circle at center, rgba(26,26,46,0.8) 0%, rgba(10,10,20,0.9) 100%);
        }
        .search-box {
            max-width: 700px;
            margin: 40px auto 20px;
        }
        .search-form {
            display: flex;
            background: rgba(255,255,255,0.1);
            border-radius: 50px;
            overflow: hidden;
            border: 2px solid rgba(77,171,247,0.3);
        }
        .search-input {
            flex: 1;
            padding: 18px 25px;
            background: transparent;
            border: none;
            color: white;
            font-size: 1.1rem;
            outline: none;
        }
        .search-input::placeholder {
            color: #aaa;
        }
        .search-btn {
            padding: 0 30px;
            background: linear-gradient(90deg, #4dabf7, #339af0);
            color: white;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s;
        }
        .search-btn:hover {
            background: linear-gradient(90deg, #339af0, #228be6);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }
        @media (min-width: 768px) {
            .content-grid {
                grid-template-columns: 3fr 1fr;
            }
        }
        .main-content {
            background: rgba(20, 20, 30, 0.7);
            padding: 40px;
            border-radius: 15px;
            border: 1px solid rgba(255,255,255,0.05);
        }
        .sidebar {
            background: rgba(20, 20, 30, 0.7);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid rgba(255,255,255,0.05);
        }
        .rank-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background: rgba(0,0,0,0.2);
            border-radius: 10px;
            overflow: hidden;
        }
        .rank-table th, .rank-table td {
            padding: 18px 15px;
            text-align: left;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .rank-table th {
            background: rgba(77, 171, 247, 0.2);
            color: #a5d8ff;
            font-weight: 700;
        }
        .rank-table tr:hover {
            background: rgba(255, 107, 107, 0.05);
        }
        .rank-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-weight: bold;
        }
        .rank-icon {
            font-size: 1.5rem;
            color: gold;
        }
        .rating-widget {
            background: rgba(0,0,0,0.3);
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            text-align: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
            font-size: 2rem;
            color: #555;
        }
        .stars .star {
            cursor: pointer;
            transition: color 0.2s, transform 0.2s;
        }
        .stars .star:hover,
        .stars .star.active {
            color: gold;
            transform: scale(1.2);
        }
        .comments-section {
            margin-top: 60px;
        }
        .comment-form, .score-form {
            background: rgba(0,0,0,0.3);
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 40px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-label {
            display: block;
            margin-bottom: 8px;
            color: #a5d8ff;
            font-weight: 600;
        }
        .form-input, .form-textarea {
            width: 100%;
            padding: 15px;
            background: rgba(255,255,255,0.07);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 8px;
            color: white;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .form-input:focus, .form-textarea:focus {
            border-color: #4dabf7;
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin: 50px 0 30px;
        }
        @media (min-width: 768px) {
            .footer-links {
                grid-template-columns: repeat(5, 1fr);
            }
        }
        .web-link {
            background: rgba(255,255,255,0.03);
            padding: 15px;
            border-radius: 8px;
            transition: background 0.3s, transform 0.3s;
            border: 1px solid rgba(255,255,255,0.05);
        }
        .web-link:hover {
            background: rgba(77, 171, 247, 0.1);
            transform: translateY(-5px);
        }
        footer {
            background: rgba(5, 5, 15, 0.95);
            padding: 40px 20px;
            text-align: center;
            border-top: 1px solid rgba(255,255,255,0.05);
            margin-top: 60px;
        }
        .copyright {
            color: #888;
            font-size: 0.95rem;
            margin-top: 20px;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .header-container { padding: 12px 15px; }
            .desktop-nav { display: none; }
            .mobile-toggle { display: block; }
            .main-content, .sidebar { padding: 25px; }
            section { padding: 40px 0; }
            .rank-table th, .rank-table td { padding: 12px 10px; font-size: 0.95rem; }
        }
