@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&family=Poppins:wght@700;800&display=swap');

:root {
    --gold: #fbc02d; /* Dark Yellow/Gold accent */
    --gold-hover: #f9a825;
    --dark-bg: #0a0a0a; /* Deep black background */
    --card-bg: rgba(25, 25, 25, 0.8); /* Semi-transparent card */
    --text-main: #ffffff;
    --text-muted: #b0b0b0;
    --border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.g-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* --- Navigation (Premium Dark) --- */
.g-nav {
    height: 80px;
    display: flex;
    align-items: center;
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-flex {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.g-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.g-logo span { color: var(--gold); }

.g-menu a {
    text-decoration: none;
    color: var(--text-muted);
    margin: 0 20px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.g-menu a:hover, .g-menu a.active { color: var(--gold); }

.g-btn-whatsapp {
    background: #25D366; /* WhatsApp Green for conversion */
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.g-btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* --- Hero Section (Immersive with Background Image) --- */
.g-hero {
    min-height: calc(100vh - 80px);
    padding: 45px 0;
    position: relative;
    display: flex;
    align-items: center;
    /* Replace with your actual gaming background image link */
    background-image: url('https://images.unsplash.com/photo-1542751371-adc38448a05e?q=80&w=2070&auto=format&fit=crop'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0.95) 100%);
    z-index: 1;
}

.hero-flex {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-text-content { flex: 1.3; }
.hero-visual { flex: 0.7; display: flex; justify-content: center; }

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(251, 192, 45, 0.1); /* Subtle Gold background */
    color: var(--gold);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid rgba(251, 192, 45, 0.2);
    margin-bottom: 30px;
}

.gold-dot {
    width: 8px;
    height: 8px;
    background-color: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold);
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.gold-text {
    color: var(--gold);
    text-shadow: 0 0 15px rgba(251, 192, 45, 0.3);
}

p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 45px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.g-btn-gold {
    background: var(--gold);
    color: #000;
    padding: 16px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.g-btn-gold:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(251, 192, 45, 0.3);
}

.g-btn-outline {
    border: 2px solid var(--border);
    color: var(--text-main);
    padding: 14px 33px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.g-btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.rating-strip {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border);
    padding-top: 25px;
}

.stars { color: var(--gold); font-size: 1.3rem; letter-spacing: 2px; }
.rate-text { font-size: 1rem; color: var(--text-muted); font-weight: 500; }

/* --- Floating Win Card (Improved Visual) --- */
.floating-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    border: 1px solid var(--border);
    text-align: center;
    backdrop-filter: blur(5px);
    animation: float 4s ease-in-out infinite;
}

.floating-card .card-header { font-size: 0.9rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.floating-card .win-amt { font-family: 'Poppins', sans-serif; font-size: 2.5rem; font-weight: 800; color: var(--gold); margin-bottom: 5px; }
.floating-card .user-id { font-size: 0.9rem; color: var(--text-muted); }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
    h1 { font-size: 3rem; }
    .hero-flex { gap: 40px; }
}

@media (max-width: 768px) {
    .g-nav { height: 70px; padding: 0 20px; }
    .nav-flex { justify-content: space-around; }
    .g-menu, .g-action { display: none; } /* Hide menu on mobile */
    .hero-flex { flex-direction: column; text-align: center; gap: 50px; }
    .hero-text-content { order: 2; }
    .hero-visual { order: 1; margin-top: 30px; }
    h1 { font-size: 2.5rem; }
    p { margin: 0 auto 30px auto; }
    .hero-btns { justify-content: center; flex-direction: column; gap: 15px; }
    .rating-strip { justify-content: center; }
}










/* --- Footer Main Styling --- */
.lb-footer {
    background-color: #050505;
    color: #ffffff;
    padding: 80px 0 0 0;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.lb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
}

/* Logo & Branding */
.footer-logo { font-size: 1.6rem; font-weight: 800; margin-bottom: 20px; }
.footer-logo span { color: #fbc02d; }
.brand-info p { color: #888; font-size: 0.9rem; line-height: 1.6; margin-bottom: 30px; }

/* App Button */
.app-download-btn {
    display: flex;
    align-items: center;
    background: #111;
    border: 1px solid #333;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    gap: 15px;
    width: fit-content;
}
.app-text span { font-size: 0.7rem; color: #666; display: block; }
.app-text strong { font-size: 0.95rem; color: #fbc02d; display: block; }

/* Column Headings */
.footer-col h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: #fff;
}

/* Links Alignment Fix */
.lb-links {
    list-style: none;
    padding: 0; /* Left padding removed */
    margin: 0;  /* Left margin removed */
}

.lb-links li { margin-bottom: 15px; }

.lb-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.lb-links a::before {
    content: '›';
    color: #fbc02d;
    margin-right: 10px;
    font-size: 1.2rem;
    font-weight: bold;
}

.lb-links a:hover { color: #fbc02d; transform: translateX(5px); }

/* Social Icons */
.social-grid { display: flex; gap: 12px; }
.social-box {
    background: #fff;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.social-box img { width: 40px; }
.social-box:hover { transform: translateY(-5px); }

/* Copyright Bar - Perfectly Centered */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 0;
    text-align: center; /* Center alignment */
    background: #030303;
    width: 100%;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: #555;
}

.gold-link { color: #fbc02d; text-decoration: none; font-weight: 600; }

/* Floating WhatsApp */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    z-index: 1000;
}

/* Responsive Fix */
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .lb-links a { justify-content: center; }
    .app-download-btn, .social-grid { margin: 0 auto; }
}

.g-logo img{
    width: 50%;
}

/* --- Unique Support Section Styles --- */
.v9j-support-wrapper {
    background-color: #030303;
    padding: 30px 0;
    width: 100%;
    font-family: 'Inter', sans-serif;
}

.v9j-container {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    padding: 0 15px;
}

/* Card: 50% Width & 200px Height */
.v9j-card {
    flex: 1;
    height: 200px;
    background: #0a0a0a;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Eye-Touch Theme Colors */
.v9j-wa-theme {
    background: linear-gradient(145deg, rgba(37, 211, 102, 0.05), #0a0a0a);
}
.v9j-wa-theme:hover {
    border-color: #25D366;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.15);
}

.v9j-call-theme {
    background: linear-gradient(145deg, rgba(251, 192, 45, 0.05), #0a0a0a);
}
.v9j-call-theme:hover {
    border-color: #fbc02d;
    box-shadow: 0 10px 30px rgba(251, 192, 45, 0.15);
}

/* Centered Content Layout */
.v9j-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    z-index: 2;
}

.v9j-icon {
    width: 50px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.v9j-title {
    color: #ffffff;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.v9j-desc {
    color: #888;
    font-size: 0.85rem;
    margin: 0 0 10px 0;
}

/* Button Integration with Unique Prefixes */
.v9j-action-btn {
    text-decoration: none;
    padding: 10px 30px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 6px;
    text-transform: uppercase;
    transition: 0.3s ease;
    border: none;
    display: inline-block;
}

.v9j-btn-green {
    background-color: #25D366;
    color: #fff;
}

.v9j-btn-gold {
    background-color: #fbc02d;
    color: #000;
}

.v9j-action-btn:hover {
    transform: translateY(-2px) scale(1.03);
    filter: brightness(1.1);
}

/* Responsive: 50/50 Stacking */
@media (max-width: 768px) {
    .v9j-container {
        flex-direction: column;
    }
    .v9j-card {
        width: 100%;
        height: 190px;
    }
}


/* --- Unique Trust Bar Styles --- */
.v9j-trust-bar {
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
    width: 100%;
}

.v9j-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    gap: 15px;
}

/* Status Items */
.v9j-status-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.v9j-status-text strong {
    display: block;
    color: #fff;
    font-size: 0.85rem;
    line-height: 1.2;
}

.v9j-status-text span {
    color: #666;
    font-size: 0.75rem;
}

/* Animated Pulse Dots */
.v9j-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: relative;
}

.v9j-pulse-green { background: #25D366; box-shadow: 0 0 8px #25D366; animation: v9j-pulse 2s infinite; }
.v9j-pulse-blue { background: #00f2ff; box-shadow: 0 0 8px #00f2ff; animation: v9j-pulse 2s infinite 0.5s; }
.v9j-pulse-gold { background: #fbc02d; box-shadow: 0 0 8px #fbc02d; animation: v9j-pulse 2s infinite 1s; }

@keyframes v9j-pulse {
    0% { transform: scale(0.95); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.7; }
}

/* Compact Button */
.v9j-compact-btn {
    background: #fbc02d;
    color: #000 !important;
    padding: 8px 20px !important;
    font-size: 0.75rem !important;
    font-weight: 800;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s;
}

.v9j-compact-btn:hover {
    background: #fff;
    box-shadow: 0 0 15px rgba(251, 192, 45, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .v9j-hide-mobile { display: none; }
    .v9j-bar-container { justify-content: center; flex-wrap: wrap; gap: 20px; }
}




/* --- Unique Live Winners Strip Styles --- */
.v9j-live-winners {
    background: #050505; /* Deep black */
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: 12px 0;
    width: 100%;
    overflow: hidden;
}

.v9j-strip-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    gap: 20px;
}

/* Live Label */
.v9j-strip-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fbc02d; /* Gold */
    font-size: 0.75rem;
    font-weight: 800;
    white-space: nowrap;
    border-right: 1px solid #333;
    padding-right: 20px;
}

.v9j-live-icon {
    width: 6px;
    height: 6px;
    background: #ff0000;
    border-radius: 50%;
    box-shadow: 0 0 8px #ff0000;
    animation: v9j-blink 1s infinite;
}

@keyframes v9j-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Winners Ticker Area */
.v9j-winners-ticker {
    display: flex;
    gap: 40px;
    flex: 1;
    overflow: hidden;
}

.v9j-winner-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    animation: v9j-slideLeft 15s linear infinite;
    white-space: nowrap;
}

.v9j-user { color: #fff; font-weight: 600; }
.v9j-amount { color: #25D366; font-weight: 800; } /* Green for money */
.v9j-game { color: #666; font-size: 0.75rem; }

@keyframes v9j-slideLeft {
    from { transform: translateX(50px); }
    to { transform: translateX(-50px); }
}

/* Mini Action Button */
.v9j-mini-action {
    background: transparent !important;
    border: 1px solid #333 !important;
    color: #999 !important;
    padding: 5px 15px !important;
    font-size: 0.7rem !important;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.v9j-mini-action:hover {
    border-color: #fbc02d !important;
    color: #fbc02d !important;
}

/* Responsive */
@media (max-width: 768px) {
    .v9j-hide-small { display: none; }
    .v9j-strip-label { border: none; padding: 0; }
    .v9j-winners-ticker { gap: 20px; }
}


/* --- Unique Payment Bar Styles --- */
.v9j-payment-bar {
    background: #080808;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 0;
    width: 100%;
}

.v9j-p-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    gap: 20px;
}

/* Label Styling */
.v9j-p-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #888;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    white-space: nowrap;
}

.v9j-p-dot {
    width: 6px;
    height: 6px;
    background: #25D366; /* Green dot for 'Live/Active' feel */
    border-radius: 50%;
    box-shadow: 0 0 8px #25D366;
}

/* Payment Badges - Professional & Clean */
.v9j-p-methods {
    flex: 1;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.v9j-p-scroll {
    display: flex;
    gap: 12px;
}

.v9j-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 4px 12px;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    transition: 0.3s;
}

.v9j-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fbc02d; /* Gold border on hover */
    color: #fbc02d;
}

/* Specific Badge Accents (Optional) */
.v9j-upi { border-left: 2px solid #ff9933; }
.v9j-gpay { border-left: 2px solid #4285F4; }
.v9j-phonepe { border-left: 2px solid #5f259f; }

/* Action Button Integration */
.v9j-p-btn {
    background: #25D366 !important; /* Green Action Color */
    color: #fff !important;
    padding: 7px 18px !important;
    font-size: 0.75rem !important;
    font-weight: 800;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s ease;
    border: none;
    white-space: nowrap;
}

.v9j-p-btn:hover {
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
    transform: scale(1.03);
}

/* Responsive Fix */
@media (max-width: 768px) {
    .v9j-p-label { display: none; } /* Hide label on small mobile to save space */
    .v9j-p-container { justify-content: center; gap: 10px; }
    .v9j-p-scroll { gap: 8px; flex-wrap: wrap; justify-content: center; }
}

/* --- Grand Feature Section Styles --- */
.v9j-grand-section {
    background-color: #050505;
    padding: 80px 0;
    width: 100%;
    color: #fff;
}

.v9j-g-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styling */
.v9j-g-header {
    text-align: center;
    margin-bottom: 60px;
}

.v9j-g-subtitle {
    color: #fbc02d;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
}

.v9j-g-title {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.v9j-gold { color: #fbc02d; }

.v9j-g-divider {
    width: 60px;
    height: 4px;
    background: #fbc02d;
    margin: 20px auto;
    border-radius: 2px;
}

/* Grid Layout */
.v9j-g-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* 3D Card Design */
.v9j-g-card {
    background: #0d0d0d;
    padding: 40px 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
}

.v9j-g-card:hover {
    transform: translateY(-10px);
    background: #111;
    border-color: rgba(251, 192, 45, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

/* Icon Styling */
.v9j-g-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.5rem;
    transition: 0.3s;
}

.v9j-ic-gold { color: #fbc02d; border: 1px solid rgba(251, 192, 45, 0.2); }
.v9j-ic-blue { color: #00f2ff; border: 1px solid rgba(0, 242, 255, 0.2); }
.v9j-ic-green { color: #25D366; border: 1px solid rgba(37, 211, 102, 0.2); }
.v9j-ic-red { color: #ff4b2b; border: 1px solid rgba(255, 75, 43, 0.2); }

.v9j-g-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.v9j-g-card p {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Big Footer Button */
.v9j-g-footer {
    text-align: center;
    margin-top: 60px;
}

.v9j-g-btn {
    padding: 15px 45px !important;
    font-size: 1rem !important;
    font-weight: 900;
    border-radius: 50px;
    background: linear-gradient(90deg, #fbc02d, #f9a825);
    color: #000 !important;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(251, 192, 45, 0.2);
    transition: 0.3s;
}

.v9j-g-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(251, 192, 45, 0.4);
    filter: brightness(1.1);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .v9j-g-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .v9j-g-grid { grid-template-columns: 1fr; }
    .v9j-g-title { font-size: 1.8rem; }
}


/* --- Unique Lobby Section Styles --- */
.v9j-lobby-section {
    background-color: #030303;
    padding: 60px 0;
    width: 100%;
}

.v9j-l-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styling */
.v9j-l-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
}

.v9j-l-title h2 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 900;
    margin: 0;
}

.v9j-neon-gold {
    color: #fbc02d;
    text-shadow: 0 0 10px rgba(251, 192, 45, 0.3);
}

.v9j-l-title p { color: #666; font-size: 0.9rem; margin-top: 5px; }

/* Stats Mini Box */
.v9j-l-stats { display: flex; gap: 15px; }
.v9j-stat-box {
    background: rgba(255,255,255,0.03);
    padding: 10px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
}
.v9j-stat-box strong { display: block; color: #fbc02d; font-size: 1.1rem; }
.v9j-stat-box span { color: #555; font-size: 0.7rem; text-transform: uppercase; font-weight: 700; }

/* Grid Layout (50/50 Split) */
.v9j-l-grid {
    display: flex;
    gap: 25px;
}

/* Lobby Card Design */
.v9j-l-card {
    flex: 1;
    min-height: 280px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.05);
}

/* Background Gradients (No Images Needed) */
.v9j-bg-sports {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
}
.v9j-bg-casino {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a2a2a 100%);
}

.v9j-l-card:hover {
    transform: scale(1.02);
    border-color: rgba(251, 192, 45, 0.4);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

/* Card Content Styling */
.v9j-l-tag {
    position: absolute;
    top: 25px;
    left: 25px;
    background: #fbc02d;
    color: #000;
    font-size: 0.65rem;
    font-weight: 900;
    padding: 4px 12px;
    border-radius: 4px;
}

.v9j-l-content h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.v9j-l-content p {
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 25px;
    max-width: 80%;
}

/* Action Button */
.v9j-l-btn {
    background: #fbc02d !important;
    color: #000 !important;
    padding: 12px 30px !important;
    font-size: 0.85rem !important;
    font-weight: 900;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.v9j-l-btn:hover {
    background: #fff !important;
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

/* Responsive Fix */
@media (max-width: 991px) {
    .v9j-l-grid { flex-direction: column; }
    .v9j-l-header { flex-direction: column; text-align: center; }
    .v9j-l-card { padding: 30px; min-height: 250px; }
}


/* --- RESET & TRUE FULL WIDTH --- */
.v9j-true-full-width {
    background-color: #000000;
    color: #ffffff;
    padding: 80px 0;
    margin: 0 !important;
    
    /* Forces the section to break out of any container */
    width: 100vw !important;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    box-sizing: border-box;
    overflow-x: hidden;
}

.v9j-full-header {
    text-align: center;
    width: 100%;
    margin-bottom: 40px;
}

.v9j-full-title {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
    padding: 0 20px;
}

.v9j-full-underline {
    width: 200px;
    height: 6px;
    background: #fbc02d;
    margin: 15px auto;
}

/* --- THE PARAGRAPH FIX (NO MAX-WIDTH) --- */
.v9j-full-paragraph-container {
    width: 100% !important; /* Poori width lega */
    padding: 0 5%; /* Sirf halka sa gap sides mein taaki chipke na */
    box-sizing: border-box;
}

.v9j-full-paragraph-container p {
    width: 100% !important;
    max-width: 100% !important; /* Koi limit nahi */
    font-size: 1.3rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 30px;
    text-align: justify; /* Edge-to-edge text align */
}

.v9j-full-yellow {
    color: #fbc02d !important;
    font-weight: 800;
}

.v9j-full-action {
    text-align: center;
    width: 100%;
    margin-top: 50px;
}

.v9j-full-btn {
    background: #fbc02d;
    color: #000 !important;
    padding: 22px 60px;
    font-size: 1.2rem;
    font-weight: 900;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    transition: 0.3s;
}

.v9j-full-btn:hover {
    background: #fff;
    letter-spacing: 1px;
}

/* --- RESPONSIVE FIX --- */
@media (max-width: 768px) {
    .v9j-full-paragraph-container {
        padding: 0 20px; /* Mobile par thoda zyada gap readability ke liye */
    }
    .v9j-full-paragraph-container p {
        text-align: left; /* Mobile par justify bura lagta hai */
        font-size: 1.1rem;
    }
}




/* --- RESET & FULL WIDTH BANNER --- */
.v9j-clean-banner {
    background-color: #0a0a0a; /* Dark Premium Grey */
    padding: 60px 0; /* Balanced Height */
    text-align: center;
    border-bottom: 1px solid #1a1a1a;
    
    /* True Full Width Fix */
    width: 100vw !important;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    box-sizing: border-box;
    margin: 0 !important;
}

.v9j-banner-content {
    width: 100%;
}

.v9j-page-identity {
    font-size: clamp(1.8rem, 5vw, 3rem); /* Responsive text size */
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

/* Yellow Identity Highlight */
.v9j-gold-text {
    color: #fbc02d;
}

/* Simple Decorative Line */
.v9j-accent-line {
    width: 80px;
    height: 4px;
    background: #fbc02d;
    margin: 15px auto 0;
    border-radius: 50px;
}

/* Mobile responsive fixes */
@media (max-width: 768px) {
    .v9j-clean-banner {
        padding: 40px 0;
    }
    .v9j-page-identity {
        letter-spacing: 1.5px;
    }
}


.v9j-form-section-wide {
    width: 100vw !important;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    padding: 60px 0;
    box-sizing: border-box;
}

.v9j-form-container-wide {
    width: 90%; /* Wide layout */
    max-width: 1200px; 
    margin: 0 auto;
}

.v9j-form-card {
    background: #0a0a0a;
    padding: 50px;
    border: 1px solid #222;
    border-radius: 12px;
}

.v9j-form-title { color: #fff; font-size: 2.5rem; font-weight: 900; text-align: center; margin-bottom: 5px; }
.v9j-form-subtitle { color: #666; text-align: center; margin-bottom: 40px; font-size: 1.1rem; }
.v9j-gold { color: #fbc02d !important; }

.v9j-input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }

#v9j-final-support-form input, 
#v9j-final-support-form textarea {
    width: 100%; padding: 18px; background: #111; border: 1px solid #333; color: #fff; border-radius: 6px; font-size: 1rem; outline: none;
}

#v9j-final-support-form input:focus, 
#v9j-final-support-form textarea:focus { border-color: #fbc02d; }

.v9j-submit-trigger {
    width: 100%; background: #fbc02d; color: #000; padding: 22px; font-size: 1.2rem; font-weight: 900; border: none; border-radius: 6px; cursor: pointer; text-transform: uppercase; transition: 0.3s; margin-top: 10px;
}

.v9j-submit-trigger:hover { background: #fff; transform: translateY(-3px); }

/* Mobile */
@media (max-width: 768px) {
    .v9j-input-row { grid-template-columns: 1fr; }
    .v9j-form-card { padding: 30px 20px; }
    .v9j-form-title { font-size: 1.8rem; }
}


/* --- RESET & FULL WIDTH --- */
.v9j-modern-about-section {
    width: 100vw !important;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    padding: 100px 0;
    margin: 0 !important;
    overflow-x: hidden;
    font-family: sans-serif;
}

.v9j-container-fluid {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Header */
.v9j-header-block { text-align: center; margin-bottom: 80px; }
.v9j-main-title { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 900; margin: 0; }
.v9j-gold { color: #fbc02d !important; }
.v9j-title-underline { width: 100px; height: 5px; background: #fbc02d; margin: 20px auto 0; border-radius: 10px; }

/* Rows & Layout */
.v9j-content-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 120px;
    width: 100% !important;
}

.v9j-reverse-row { flex-direction: row-reverse; }

/* Image Styling */
.v9j-image-side { flex: 1; position: relative; }
.v9j-image-side img {
    width: 100% !important;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border: 1px solid #222;
    transition: 0.5s;
}
.v9j-image-side img:hover { transform: scale(1.05); border-color: #fbc02d; }

/* Text & P-Tag Fix */
.v9j-text-side { flex: 1.2; }
.v9j-sub-heading { font-size: 2.2rem; font-weight: 800; margin-bottom: 20px; }

.v9j-text-side p {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 1.2rem !important;
    line-height: 1.9 !important;
    color: #ccc !important;
    margin-bottom: 25px !important;
    text-align: justify !important; /* Proper straight edges */
}

/* --- ANIMATIONS --- */
.v9j-float-anim { animation: v9j-floating 5s ease-in-out infinite; }
.v9j-float-anim-delayed { animation: v9j-floating 5s ease-in-out infinite 2s; }

@keyframes v9j-floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Mobile Fix */
@media (max-width: 991px) {
    .v9j-content-row { flex-direction: column !important; gap: 40px; margin-bottom: 80px; }
    .v9j-text-side p { text-align: left !important; font-size: 1.1rem !important; }
    .v9j-sub-heading { font-size: 1.8rem; }
}

/* --- Privacy Policy Full-Width Fix --- */
.v9j-policy-section {
    width: 100vw !important;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    padding: 0px 0;
    margin: 0 !important;
    box-sizing: border-box;
    font-family: sans-serif;
}

.v9j-policy-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

.v9j-policy-header {
    text-align: center;
    margin-bottom: 70px;
}

.v9j-policy-title {
    font-size: clamp(2.5rem, 7vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
}

.v9j-policy-subtitle {
    color: #888;
    font-size: 1.2rem;
    margin-top: 10px;
}

.v9j-gold { color: #fbc02d !important; }

.v9j-gold-bar {
    width: 100px;
    height: 5px;
    background: #fbc02d;
    margin: 25px auto 0;
    border-radius: 10px;
}

/* Policy Content Styling */
.v9j-policy-body h3 {
    color: #fbc02d;
    font-size: 1.8rem;
    margin-top: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-left: 4px solid #fbc02d;
    padding-left: 15px;
}

.v9j-policy-body p {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 1.2rem !important;
    line-height: 1.9 !important;
    color: #ccc !important;
    margin-bottom: 25px !important;
    text-align: justify !important; /* Perfect straight edges */
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .v9j-policy-section { padding: 60px 0; }
    .v9j-policy-body p { text-align: left !important; font-size: 1.1rem !important; }
    .v9j-policy-body h3 { font-size: 1.4rem; }
}


/* 1. Banner Section Fix (CUSTOMER SUPPORT) */
.v9j-page-banner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important; /* Horizontally Center */
    justify-content: center !important; /* Vertically Center */
    text-align: center !important;
    width: 100vw !important;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    min-height: 250px; /* Thoda height badhane ke liye */
}

.v9j-banner-content {
    width: 100% !important;
    text-align: center !important;
}

/* 2. Policy Section Center Fix */
.v9j-policy-container {
    width: 90% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    text-align: center !important;
}

/* 3. Paragraph Text Alignment */
.v9j-policy-body p {
    text-align: center !important; /* Isse text justify nahi, center dikhega */
    margin-left: auto !important;
    margin-right: auto !important;
    color: #cccccc !important;
    line-height: 1.8 !important;
}

/* 4. Breadcrumb (Home / Support Hub) Center */
.v9j-page-subtitle {
    display: block !important;
    text-align: center !important;
    margin: 10px auto !important;
    color: #888 !important;
}


/* --- THE CONTAINER BREAKER (Asli Fix) --- */
.jb-full-wrapper {
    width: 100vw !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

/* --- BANNER DESIGN --- */
.jb-hero-banner {
    width: 100% !important;
    height: 300px;
    background: url('https://images.unsplash.com/photo-1542751371-adc38448a05e?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jb-banner-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.jb-page-title {
    font-size: clamp(2rem, 8vw, 4.5rem);
    font-weight: 900;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    width: 90%;
}

.jb-gold { color: #fbc02d !important; }

.jb-title-line {
    width: 80px; height: 4px; background: #fbc02d; margin-top: 15px; border-radius: 10px;
}

/* --- CONTENT AREA FIX --- */
.jb-main-content {
    width: 90%;
    max-width: 1300px;
    margin: 60px auto !important;
    padding: 0 15px;
}

.jb-content-block { margin-bottom: 50px; }

.jb-section-head {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Paragraph Text Fix */
.jb-content-block p {
    font-size: 1.2rem !important;
    line-height: 1.8 !important;
    color: #ccc !important;
    text-align: justify !important; /* Proper straight edges like professional sites */
    margin-bottom: 20px;
    width: 100% !important;
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 768px) {
    .jb-hero-banner { height: 200px; }
    .jb-section-head { font-size: 1.6rem; }
    .jb-content-block p { text-align: left !important; font-size: 1.1rem !important; }
}

/* Sabhi banners ke liye basic styling */
.banner {
    width: 100%;
    height: auto;
    display: block;
}

/* Default: Mobile banner ko hide rakhein (Bade screens ke liye) */
.mobile-banner {
    display: none;
}

/* Jab screen size 768px ya usse choti ho (Mobile Devices) */
@media screen and (max-width: 768px) {
    
    /* Desktop banner ko hide kar dein */
    .desktop-banner {
        display: none !important;
    }

    /* Mobile banner ko show karein */
    .mobile-banner {
        display: block !important;
    }
}


/*==================== Box Css ==================== */
/*==================== Box Css ==================== */


        .container {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .box {
            background: #16161a;
            padding: 35px;
            border-radius: 8px; /* Sharper corners for gaming feel */
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: flex;
            flex-direction: column;
            /* Box ke bottom mein yellow line */
            border-bottom: 4px solid #f1c40f; 
        }

        /* Hover Effect: Glow aur Scale */
        .box:hover {
            transform: scale(1.05) translateY(-5px);
            border-color: #f1c40f;
            box-shadow: 0 10px 30px rgba(241, 196, 15, 0.2);
            background: #1c1c21;
        }

        /* Sharp font for main heading */
        .box h2 {
            font-family: 'Oswald', sans-serif;
            color: #ffffff;
            margin-bottom: 8px;
            font-size: 1.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Bright Yellow for Subheading */
        .box h4 {
            color: #f1c40f;
            margin-bottom: 20px;
            font-weight: 500;
            text-transform: uppercase;
            font-size: 0.95rem;
            letter-spacing: 2px;
        }

        .box p {
            color: #ccc;
            line-height: 1.7;
            margin-bottom: 25px;
            flex-grow: 1;
            font-size: 1rem;
        }

        /* Gaming Button Styling */
        .box a {
            display: inline-block;
            text-decoration: none;
            background: transparent;
            border: 2px solid #f1c40f;
            color: #f1c40f;
            padding: 12px 24px;
            border-radius: 4px;
            text-align: center;
            font-weight: bold;
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
        }

        .box a:hover {
            background: #f1c40f;
            color: #16161a;
            box-shadow: 0 0 15px rgba(241, 196, 15, 0.5);
        }

        /* Special Styling for 7th Box (Optional) */
        .box:nth-child(7) {
            border-bottom-color: #e74c3c; /* Thoda unique touch ke liye red bottom */
        }
        .box:nth-child(7) h4 {
            color: #e74c3c;
        }
        .box:nth-child(7) a {
            border-color: #e74c3c;
            color: #e74c3c;
        }
        .box:nth-child(7) a:hover {
            background: #e74c3c;
            color: white;
            box-shadow: 0 0 15px rgba(231, 76, 60, 0.5);
        }
        .box:nth-child(7):hover {
            border-color: #e74c3c;
            box-shadow: 0 10px 30px rgba(231, 76, 60, 0.2);
        }

        /* Title Area at the top (Optional) */
        .page-title {
            text-align: center;
            margin-bottom: 60px;
            font-family: 'Oswald', sans-serif;
            font-size: 3rem;
            text-transform: uppercase;
            color: #fff;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
        }
        .page-title span {
            color: #f1c40f;
        }

        /* Mobile Optimization */
        @media (max-width: 600px) {
            .container {
                grid-template-columns: 1fr;
            }
            .page-title {
                font-size: 2rem;
            }
        }

/*==================== Box Css ==================== */
/*==================== Box Css ==================== */