* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

body {
    min-height: 100vh;
    background: #f8fafc;          /* बहुत हल्का ग्रे-सफेद */
    color: #1e293b;               /* गहरा ग्रे-काला */
    background-image: url(images/back.jpg);
}
.main-container {
    max-width: 900px;
    padding-bottom: 10px; /* नीचे नेविगेशन के लिए जगह */
    background-color: white;
}
.app-shell {
    max-width: 900px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* HEADER / TOPBAR */
.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-circle {
    width: 32px;
    height: 32px;
    border-radius: 12px;
    background: radial-gradient(circle at 0 0, #67e8f9, #a5b4fc);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

.brand-sub {
    font-size: 11px;
    color: #64748b;              /* हल्का ग्रे */
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-links {
    display: none;
}

.login-btn {
    padding: 6px 10px;
    border-radius: 999px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(135deg, #494949, #3d3d3d);
    color: #deb80b;
    cursor: pointer;
}

.menu-btn {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid #cbd5e1;
    background: transparent;
    color: #475569;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Mobile dropdown menu */
.menu-drawer {
    display: none;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 8px 14px 10px;
}

.menu-drawer a {
    display: inline-block;
    margin-right: 14px;
    font-size: 13px;
    color: #64748b;
    text-decoration: none;
}

.menu-drawer a.active {
    color: #6366f1;
}

@media (min-width: 768px) {
    .menu-btn { display: none; }
    .menu-links {
        display: flex;
        align-items: center;
        gap: 14px;
    }
    .menu-links a {
        font-size: 13px;
        color: #64748b;
        text-decoration: none;
    }
    .menu-links a.active {
        color: #6366f1;
    }
    .menu-drawer { display: none !important; }
}

.content {
    padding: 12px 14px 70px;
    flex: 1;
}

/* IMAGE SLIDER */
.slider {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 14px;
    background: white;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 250px;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* overlay को हल्का किया */
.slider-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 10px 12px;
    background: linear-gradient(to top, rgba(15,23,42,0.75), rgba(15,23,42,0));
}

.slider-title {
    font-size: 15px;
    font-weight: 600;
    color: white;
}

.slider-sub {
    font-size: 11px;
    color: #e5e7eb;
}

.dots {
    position: absolute;
    bottom: 6px;
    right: 10px;
    display: flex;
    gap: 5px;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #cbd5e1;
}

.dot.active {
    background: #facc15;
}

/* SUPPORT SECTION */
.support-card {
    margin-top: 8px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.support-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.support-icon {
    width: 32px;
    height: 32px;
    border-radius: 12px;
    background: rgba(56,189,248,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #0ea5e9;
}

.support-title {
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
}

.support-sub {
    font-size: 11px;
    color: #64748b;
}

.support-phone {
    font-size: 14px;
    font-weight: 700;
    color: #d1ad0d;
}

/* GAME RESULT */
.section-title {
    font-size: 14px;
    font-weight: 600;
    margin: 14px 0 6px;
    color: #1e293b;
}

.result-card {
    background: #ca8b04a4;          /* बहुत हल्का हरा */
    border-radius: 16px;
    border: 1px solid #000000;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content:center;
}

.result-label {
    font-size: 12px;
    color: #166534;
    text-align: center;
}

.result-number {
    font-size: 28px;
    font-weight: 800;
    color: #070707;  
    text-align: center;             /* हल्का गोल्ड/पीला */
}

.result-meta {
    font-size: 14px;
    color: #fab20a;
    background-color: #000000;
    margin-top: 2px;
}

.result-pill {
    padding: 6px 10px;
    border-radius: 999px;
    background: #f1f5f9;
    font-size: 11px;
    color: #475569;
    text-align: center;
}

/* GAMES SLIDER */
.games-strip {
    overflow-x: auto;
    padding-bottom: 4px;
}

.games-row {
    display: flex;
    gap: 10px;
}

.game-card {
    min-width: 130px;
    max-width: 140px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.game-body {
    padding: 8px;
}

.game-name {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 2px;
    color: #1e293b;
}

.game-tag {
    font-size: 10px;
    color: #64748b;
    margin-bottom: 4px;
}

.game-link {
    display: inline-block;
    font-size: 11px;
    border-radius: 999px;
    padding: 4px 8px;
    background: #f1f5f9;
    text-decoration: none;
    color: #475569;
}

/* BOTTOM NAV */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-around;
    padding: 6px 4px 8px;
    box-shadow: 0 -1px 3px rgba(0,0,0,0.06);
}

.nav-item {
    flex: 1;
    text-align: center;
    font-size: 11px;
    color: #64748b;
}
.nav-item a {
    color: inherit;
    text-decoration: none;
}
.nav-item span {
    display: block;
    font-size: 16px;
    margin-bottom: 1px;
}

.nav-item.active {
    color: #6366f1;
}
.result-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
    margin-top:8px;
}

.result-mini-card{
    background:linear-gradient(145deg,#020617,#030712);
    border:1px solid #000000;
    border-radius:14px;
    padding:10px;
    text-align:center;
}

.mini-number{
    font-size:22px;
    font-weight:800;
    color:#facc15;
}

.mini-meta{
    font-size:11px;
    color:#9ca3af;
    margin-top:4px;
}
.active-widget{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 14px;
    border-radius:30px;
    background:#ffffff;
    border:1px solid #000000;
    font-size:13px;
    font-weight:600;
    color:#333;
    box-shadow:0 4px 10px rgba(0,0,0,0.05);
}

.active-widget span#activeCount{
    color:#d4af37;
    font-size:16px;
    font-weight:700;
}

/* Green Online Pulse */
.pulse-dot{
    width:8px;
    height:8px;
    background:#28a745;
    border-radius:50%;
    position:relative;
}

.pulse-dot::after{
    content:'';
    position:absolute;
    width:8px;
    height:8px;
    background:#28a745;
    border-radius:50%;
    animation:pulse 1.5s infinite;
    opacity:0.6;
}

@keyframes pulse{
    0%{transform:scale(1);opacity:0.6;}
    100%{transform:scale(2.5);opacity:0;}
}
/* ===============================
   RESULT TICKER
================================ */
.marquee-wrapper{
    background:#f8f6f6;
    padding:12px 0;
    border-radius:12px;
    border:1px solid #000000;
}

/* Each Result Block */
.marquee-block{
    display:inline-block;
    text-align:center;
    margin:0 25px;
    padding:10px 20px;
    background:#111;
    border-radius:10px;
    border:1px solid #000000;
    min-width:100px;
}

/* Big Winning Number */
.marquee-result{
    font-size:28px;
    font-weight:700;
    color:#ffd700;
    text-shadow:0 0 10px rgba(255,215,0,0.7);
    margin-bottom:6px;
}

/* Slot + Time */
.marquee-time{
    font-size:12px;
    color:#d4af37;
    line-height:1.4;
}
/* Optional: Glow effect */
.marquee-item strong{
    color:#ffd700;
    text-shadow:0 0 6px rgba(255,215,0,0.7);
}
.result-ticker-wrapper{
    overflow:hidden;
    width:100%;
    position:relative;
    background:#ffffff;
    padding:10px 0;
    border-radius:12px;
}

.result-ticker{
    display:flex;
    white-space:nowrap;
    gap:60px;
    animation:scrollTicker 25s linear infinite;
}

/* Pause on hover */
.result-ticker-wrapper:hover .result-ticker{
    animation-play-state:paused;
}

.ticker-item{
    flex-shrink:0;
    font-size:14px;
    font-weight:500;
    color:#333;
}

/* LEFT → RIGHT entry effect */
@keyframes scrollTicker{
    from{
        transform:translateX(-100%);
    }
    to{
        transform:translateX(0);
    }
}