        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #0c0c1d 0%, #1a1a2e 100%);
            color: #e0e0ff;
            min-height: 100vh;
        }
        a {
            color: #6c8eff;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #ffcc00;
            text-shadow: 0 0 8px rgba(255, 204, 0, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .main-header {
            background: rgba(10, 10, 30, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #6c8eff;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-family: 'Arial Black', sans-serif;
            font-size: 2rem;
            background: linear-gradient(90deg, #6c8eff, #ffcc00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo:hover {
            transform: scale(1.05);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 6px;
            position: relative;
        }
        .main-nav a:hover {
            background: rgba(108, 142, 255, 0.1);
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: #ffcc00;
            transition: width 0.3s;
        }
        .main-nav a:hover::after {
            width: 80%;
        }
        .breadcrumb {
            padding: 12px 0;
            background: rgba(20, 20, 40, 0.7);
            margin-bottom: 30px;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin: 0 10px;
            color: #6c8eff;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        .hero {
            text-align: center;
            padding: 40px 0;
            background: radial-gradient(circle at center, rgba(30, 30, 60, 0.8) 0%, rgba(10, 10, 30, 0.9) 70%);
            border-radius: 15px;
            margin: 20px auto;
            border: 1px solid #6c8eff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: #ffcc00;
            text-shadow: 0 2px 10px rgba(255, 204, 0, 0.3);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #b0b0ff;
        }
        .search-box {
            max-width: 600px;
            margin: 30px auto;
            background: rgba(30, 30, 60, 0.7);
            padding: 25px;
            border-radius: 12px;
            border: 1px solid #6c8eff;
        }
        .search-box h2 {
            text-align: center;
            margin-bottom: 20px;
            color: #ffcc00;
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex: 1;
            padding: 15px;
            border: 2px solid #6c8eff;
            border-radius: 8px;
            background: rgba(10, 10, 25, 0.8);
            color: #fff;
            font-size: 1rem;
        }
        .search-btn {
            background: linear-gradient(90deg, #6c8eff, #4a6fe3);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            transition: all 0.3s;
        }
        .search-btn:hover {
            background: linear-gradient(90deg, #ffcc00, #e6b800);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
        }
        .content-section {
            background: rgba(20, 20, 40, 0.8);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            border-left: 5px solid #ffcc00;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        .content-section h2 {
            color: #6c8eff;
            margin-bottom: 20px;
            font-size: 2.2rem;
            border-bottom: 2px solid rgba(108, 142, 255, 0.3);
            padding-bottom: 10px;
        }
        .content-section h3 {
            color: #ffcc00;
            margin: 25px 0 15px;
            font-size: 1.6rem;
        }
        .content-section p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.15rem;
            color: #d0d0ff;
        }
        .highlight {
            background: rgba(255, 204, 0, 0.1);
            border-left: 4px solid #ffcc00;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .game-image {
            width: 100%;
            max-width: 800px;
            margin: 30px auto;
            border-radius: 10px;
            overflow: hidden;
            border: 3px solid #6c8eff;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }
        .game-image img {
            width: 100%;
            transition: transform 0.5s;
        }
        .game-image img:hover {
            transform: scale(1.03);
        }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .comment-box, .rating-box {
            background: rgba(30, 30, 60, 0.8);
            padding: 25px;
            border-radius: 12px;
            border: 1px solid #6c8eff;
        }
        .comment-box h3, .rating-box h3 {
            color: #ffcc00;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        textarea, select, .rating-stars input {
            width: 100%;
            padding: 15px;
            margin-bottom: 15px;
            border: 2px solid #6c8eff;
            border-radius: 8px;
            background: rgba(10, 10, 25, 0.9);
            color: #fff;
            font-family: inherit;
            font-size: 1rem;
        }
        .rating-stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
        }
        .rating-stars label {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.3s;
        }
        .rating-stars input:checked ~ label,
        .rating-stars label:hover,
        .rating-stars label:hover ~ label {
            color: #ffcc00;
        }
        .rating-stars input {
            display: none;
        }
        .submit-btn {
            background: linear-gradient(90deg, #ff3366, #cc0044);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1rem;
            width: 100%;
            transition: all 0.3s;
        }
        .submit-btn:hover {
            background: linear-gradient(90deg, #ffcc00, #e6b800);
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(255, 204, 0, 0.4);
        }
        .footer-links {
            background: rgba(15, 15, 35, 0.9);
            padding: 40px 0;
            margin-top: 50px;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin-bottom: 30px;
        }
        .web-link {
            background: rgba(40, 40, 70, 0.5);
            padding: 15px;
            border-radius: 8px;
            transition: all 0.3s;
            border: 1px solid transparent;
        }
        .web-link:hover {
            background: rgba(108, 142, 255, 0.15);
            border-color: #6c8eff;
            transform: translateX(5px);
        }
        .main-footer {
            background: rgba(10, 10, 25, 0.95);
            text-align: center;
            padding: 30px 0;
            border-top: 2px solid #ffcc00;
        }
        .copyright {
            color: #aaa;
            font-size: 0.95rem;
            margin-top: 20px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: rgba(10, 10, 30, 0.98);
                flex-direction: column;
                align-items: center;
                padding-top: 40px;
                transition: left 0.5s ease;
                z-index: 999;
            }
            .main-nav.active ul {
                left: 0;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-btn {
                padding: 15px;
            }
            .content-section h2 {
                font-size: 1.8rem;
            }
            .content-section h3 {
                font-size: 1.4rem;
            }
            .interactive-section {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            .content-section {
                padding: 20px;
            }
            .web-links-container {
                grid-template-columns: 1fr;
            }
        }
