:root {
    --gold: #FFD700;
    --gold2: #FFA500;
    --dark: #ffffff;
    --card-bg: #ffffff;
    --card-border: #e0e0e0;
    --green: #00c853;
    --red: #ff4444;
    --blue: #2196f3;
    --purple: #7c4dff;
    --text: #1a1a1a;
    --text-muted: #666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #ffffff;
    color: var(--text);
    font-family: 'Nunito', sans-serif;
    min-height: 100vh;
    background-image: none;
    /* Text smoothing */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* ===== NAVBAR ===== */
nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid rgba(76, 175, 80, 0.3);
    padding: 0 16px;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo .logo-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.3);
}

.nav-logo span {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #2E7D32;
    letter-spacing: 1px;
    text-shadow: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s;
}

.nav-links a:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold);
}

.nav-tg {
    background: linear-gradient(135deg, #0088cc, #005fa3);
    color: white !important;
    border-radius: 20px !important;
    padding: 6px 14px !important;
    font-size: 12px !important;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-tg:hover {
    transform: scale(1.05);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    display: block;
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #4CAF50, #2E7D32);
        display: flex;
        justify-content: center;
        gap: 2px;
        padding: 6px 8px;
        z-index: 999;
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .nav-links::-webkit-scrollbar {
        display: none;
    }

    .nav-links a {
        color: white;
        font-size: 11px;
        padding: 4px 8px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.2);
        color: white;
    }

    .nav-tg {
        background: rgba(255, 255, 255, 0.15) !important;
    }

    .hamburger {
        display: none;
    }

    .banner {
        margin-top: 36px;
    }

    .marquee-wrap {
        margin-top: 36px;
    }
}

/* ===== BANNER (CUSTOM ANIMATED) ===== */
/* ===== HERO BANNER (IMAGE BASED) ===== */
.banner-container {
    position: relative;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.banner-img {
    width: 100%;
    display: block;
    height: auto;
    object-fit: cover;
    /* Optional: maintain aspect ratio or max-height */
}

/* Shine effect */
.banner-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    animation: shine 4s infinite;
    pointer-events: none;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

/* ─── BACKGROUND LAYERS ─── */
.bg-base {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            #0d0420 0%,
            #1a0535 25%,
            #110330 50%,
            #1c0840 75%,
            #0d0a2a 100%);
}

.bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 215, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 215, 0, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: orb-drift 8s ease-in-out infinite alternate;
}

.orb1 {
    width: 200px;
    height: 200px;
    background: rgba(120, 0, 200, 0.35);
    top: -60px;
    left: -40px;
    animation-delay: 0s;
}

.orb2 {
    width: 180px;
    height: 180px;
    background: rgba(255, 100, 0, 0.25);
    bottom: -50px;
    right: 50px;
    animation-delay: -3s;
}

.orb3 {
    width: 150px;
    height: 150px;
    background: rgba(255, 215, 0, 0.15);
    top: 20px;
    left: 40%;
    animation-delay: -5s;
}

@keyframes orb-drift {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(20px, 15px) scale(1.1);
    }
}

.ground-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 60px;
    background: radial-gradient(ellipse, rgba(255, 180, 0, 0.18) 0%, transparent 70%);
}

/* ─── PARTICLES ─── */
.particle {
    position: absolute;
    border-radius: 50%;
    animation: particle-float linear infinite;
    pointer-events: none;
}

@keyframes particle-float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-250px) rotate(360deg);
        opacity: 0;
    }
}

/* ─── SIDE LIGHT BEAMS ─── */
.beam {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(255, 215, 0, 0.3), transparent);
    animation: beam-pulse 3s ease-in-out infinite;
}

.beam1 {
    left: 28%;
    animation-delay: 0s;
}

.beam2 {
    left: 72%;
    animation-delay: -1.5s;
}

@keyframes beam-pulse {

    0%,
    100% {
        opacity: 0.2;
        height: 30%;
        top: 35%;
    }

    50% {
        opacity: 0.8;
        height: 80%;
        top: 10%;
    }
}

/* ─── CORNER DECORATIONS ─── */
.corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border-color: rgba(255, 215, 0, 0.4);
    border-style: solid;
}

.corner-tl {
    top: 8px;
    left: 8px;
    border-width: 2px 0 0 2px;
}

.corner-tr {
    top: 8px;
    right: 8px;
    border-width: 2px 2px 0 0;
}

.corner-bl {
    bottom: 8px;
    left: 8px;
    border-width: 0 0 2px 2px;
}

.corner-br {
    bottom: 8px;
    right: 8px;
    border-width: 0 2px 2px 0;
}

/* ─── FLOATING GAME ICONS ─── */
.icon-float {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 2px solid;
    font-size: 22px;
    animation: icon-bounce ease-in-out infinite alternate;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
    z-index: 5;
}

.icon-float:hover {
    transform: scale(1.15) !important;
}

@keyframes icon-bounce {
    from {
        transform: translateY(0px) rotate(-2deg);
    }

    to {
        transform: translateY(-10px) rotate(2deg);
    }
}

.icon1 {
    width: 70px;
    height: 70px;
    top: 18px;
    left: 12px;
    background: linear-gradient(145deg, #1a0a3e, #2d1060);
    border-color: #9b59b6;
    box-shadow: 0 0 20px rgba(155, 89, 182, 0.5), 0 8px 24px rgba(0, 0, 0, 0.5);
    animation-duration: 3.2s;
    animation-delay: 0s;
}

.icon2 {
    width: 62px;
    height: 62px;
    top: 30px;
    left: 110px;
    background: linear-gradient(145deg, #1a2e0a, #2d5010);
    border-color: #27ae60;
    box-shadow: 0 0 18px rgba(39, 174, 96, 0.45), 0 8px 24px rgba(0, 0, 0, 0.5);
    animation-duration: 2.8s;
    animation-delay: -0.8s;
}

.icon3 {
    width: 68px;
    height: 68px;
    top: 15px;
    right: 12px;
    background: linear-gradient(145deg, #2e1a0a, #501a10);
    border-color: #e67e22;
    box-shadow: 0 0 20px rgba(230, 126, 34, 0.45), 0 8px 24px rgba(0, 0, 0, 0.5);
    animation-duration: 3.5s;
    animation-delay: -1.2s;
}

.icon4 {
    width: 64px;
    height: 64px;
    top: 28px;
    right: 105px;
    background: linear-gradient(145deg, #0a1a2e, #102050);
    border-color: #3498db;
    box-shadow: 0 0 18px rgba(52, 152, 219, 0.45), 0 8px 24px rgba(0, 0, 0, 0.5);
    animation-duration: 2.6s;
    animation-delay: -0.4s;
}

.icon5 {
    width: 56px;
    height: 56px;
    bottom: 20px;
    left: 60px;
    background: linear-gradient(145deg, #2e0a1a, #501030);
    border-color: #e74c3c;
    box-shadow: 0 0 16px rgba(231, 76, 60, 0.45), 0 8px 24px rgba(0, 0, 0, 0.5);
    animation-duration: 3.8s;
    animation-delay: -2s;
}

.icon6 {
    width: 56px;
    height: 56px;
    bottom: 22px;
    right: 58px;
    background: linear-gradient(145deg, #2a2a0a, #454510);
    border-color: #f1c40f;
    box-shadow: 0 0 16px rgba(241, 196, 15, 0.45), 0 8px 24px rgba(0, 0, 0, 0.5);
    animation-duration: 3.0s;
    animation-delay: -1.6s;
}

.icon-label {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Rajdhani', sans-serif;
    font-size: 9px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    letter-spacing: 0.5px;
}

/* Icon images */
.icon-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

/* ─── RUPEE AMOUNTS ─── */
.rupee-tag {
    position: absolute;
    font-family: 'Teko', sans-serif;
    font-weight: 700;
    color: #00ff88;
    text-shadow: 0 0 12px rgba(0, 255, 136, 0.7), 0 0 24px rgba(0, 255, 136, 0.4);
    letter-spacing: 1px;
    animation: rupee-pop ease-in-out infinite alternate;
    z-index: 10;
    pointer-events: none;
}

@keyframes rupee-pop {
    from {
        transform: scale(1) rotate(-4deg);
        filter: brightness(1);
    }

    to {
        transform: scale(1.1) rotate(4deg);
        filter: brightness(1.3);
    }
}

.r1 {
    font-size: 26px;
    top: 52px;
    left: 88px;
    animation-duration: 2.4s;
    animation-delay: 0s;
    color: #FFD700;
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.8);
}

.r2 {
    font-size: 22px;
    top: 120px;
    left: 50px;
    animation-duration: 3.1s;
    animation-delay: -1s;
    color: #00ff88;
}

.r3 {
    font-size: 28px;
    top: 40px;
    right: 90px;
    animation-duration: 2.7s;
    animation-delay: -0.5s;
    color: #ff6b6b;
    text-shadow: 0 0 12px rgba(255, 107, 107, 0.8);
}

.r4 {
    font-size: 20px;
    bottom: 28px;
    right: 170px;
    animation-duration: 3.4s;
    animation-delay: -2s;
    color: #FFD700;
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.8);
}

/* ─── CENTER CONTENT ─── */
.center-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 20;
    width: 280px;
    pointer-events: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.center-content a {
    pointer-events: auto;
}

.crown {
    font-size: 32px;
    margin-bottom: -4px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
    animation: float-crown 3s ease-in-out infinite;
    display: block;
}

@keyframes float-crown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.main-title {
    font-family: 'Teko', sans-serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 0.9;
    text-transform: uppercase;
    background: linear-gradient(to bottom, #FFD700 0%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    filter: drop-shadow(0 2px 0px rgba(0, 0, 0, 0.5));
    letter-spacing: 1px;
}

@keyframes gold-shift {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.sub-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #333;
    text-transform: uppercase;
    margin: 0 0 12px;
    text-shadow: none;
}

.bonus-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid #4CAF50;
    border-radius: 50px;
    padding: 6px 18px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #00e676;
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.2);
    letter-spacing: 0.5px;
    animation: pill-glow 2s ease-in-out infinite alternate;
    margin-bottom: 10px;
}

@keyframes pill-glow {
    from {
        box-shadow: 0 0 8px rgba(0, 255, 136, 0.3);
    }

    to {
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
    }
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FFD700, #FF8C00);
    color: #1a1a1a;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 900;
    padding: 10px 30px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(255, 165, 0, 0.5);
    animation: btn-pulse 2s ease-in-out infinite;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    animation: btn-shine 2.5s linear infinite;
}

@keyframes btn-shine {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

@keyframes btn-pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(255, 165, 0, 0.5);
    }

    50% {
        transform: scale(1.04);
        box-shadow: 0 6px 30px rgba(255, 165, 0, 0.75);
    }
}

/* ─── STAR SPARKS ─── */
.spark {
    position: absolute;
    font-size: 12px;
    animation: spark-twinkle ease-in-out infinite;
    pointer-events: none;
    z-index: 3;
}

@keyframes spark-twinkle {

    0%,
    100% {
        opacity: 0;
        transform: scale(0.5) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
    }
}

/* ─── BOTTOM STRIPE ─── */
.bottom-stripe {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
            transparent 0%,
            #FFD700 20%,
            #FF8C00 40%,
            #FFD700 60%,
            #FF8C00 80%,
            transparent 100%);
    animation: stripe-slide 3s linear infinite;
    background-size: 200% 100%;
}

@keyframes stripe-slide {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 200% 0%;
    }
}

/* 18+ badge */
.age-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Rajdhani', sans-serif;
    z-index: 30;
    letter-spacing: -0.5px;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .banner {
        height: 160px;
    }

    /* Smaller icons on mobile */
    .icon1 {
        width: 45px;
        height: 45px;
        top: 10px;
        left: 6px;
        font-size: 18px;
    }

    .icon2 {
        width: 40px;
        height: 40px;
        top: 16px;
        left: 60px;
        font-size: 16px;
    }

    .icon3 {
        width: 46px;
        height: 46px;
        top: 8px;
        right: 6px;
        font-size: 18px;
    }

    .icon4 {
        width: 42px;
        height: 42px;
        top: 14px;
        right: 60px;
        font-size: 17px;
    }

    .icon5 {
        width: 38px;
        height: 38px;
        bottom: 12px;
        left: 35px;
        font-size: 15px;
    }

    .icon6 {
        width: 38px;
        height: 38px;
        bottom: 12px;
        right: 35px;
        font-size: 15px;
    }

    .icon-label {
        font-size: 6px;
        bottom: -12px;
    }

    /* Smaller rupee amounts */
    .r1 {
        font-size: 16px;
        top: 32px;
        left: 52px;
    }

    .r2 {
        font-size: 14px;
        top: 74px;
        left: 28px;
    }

    .r3 {
        font-size: 18px;
        top: 24px;
        right: 52px;
    }

    .r4 {
        font-size: 12px;
        bottom: 16px;
        right: 100px;
    }

    /* Center content adjustments */
    .center-content {
        width: 200px;
    }

    .crown {
        font-size: 20px;
        margin-bottom: 1px;
    }

    .main-title {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .sub-title {
        font-size: 9px;
        letter-spacing: 2px;
        margin: 1px 0 6px;
    }

    .bonus-pill {
        font-size: 9px;
        padding: 3px 10px;
        margin-bottom: 6px;
    }

    .cta-btn {
        font-size: 11px;
        padding: 6px 18px;
    }

    /* Featured cards more compact on mobile */
    .featured-card {
        padding: 10px 6px;
    }

    .feat-logo img {
        width: 50px;
        height: 50px;
    }

    .feat-name {
        font-size: 11px;
    }

    .feat-stars {
        font-size: 9px;
    }

    .feat-tag {
        font-size: 8px;
        padding: 3px 6px;
    }

    .dl-btn {
        font-size: 10px;
        padding: 6px 12px;
    }

    /* Hide some beams and particles on mobile for performance */
    .beam {
        display: none;
    }

    .orb3 {
        display: none;
    }
}

/* ===== FEATURED SECTION ===== */
.featured-section {
    padding: 20px 12px 10px;
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(255, 215, 0, 0.3), transparent);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 14px;
}

@media (max-width: 768px) {
    .featured-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
}

.featured-card {
    background: #ffffff;
    border: 1.5px solid rgba(76, 175, 80, 0.3);
    border-radius: 12px;
    padding: 10px 8px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.2);
    border-color: rgba(76, 175, 80, 0.6);
}

/* Middle card elevated */
.featured-card:nth-child(2) {
    transform: translateY(-10px);
    border-color: rgba(76, 175, 80, 0.5);
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.15);
}

.featured-card:nth-child(2):hover {
    transform: translateY(-14px);
}

.featured-card .shimmer {
    position: absolute;
    top: -100%;
    left: -60%;
    width: 40%;
    height: 300%;
    background: linear-gradient(105deg, transparent 40%, rgba(76, 175, 80, 0.08) 50%, transparent 60%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -60%;
    }

    100% {
        left: 160%;
    }
}

.feat-logo {
    font-size: 36px;
    margin-bottom: 6px;
}

.feat-logo img {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 12px;
}

.feat-name {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.feat-stars {
    font-size: 10px;
    margin-bottom: 4px;
    animation: star-shine 2s ease-in-out infinite;
}

@keyframes star-shine {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.feat-tag {
    background: rgba(0, 230, 118, 0.1);
    border: 1px solid rgba(0, 230, 118, 0.3);
    border-radius: 20px;
    padding: 2px 8px;
    font-size: 9px;
    color: var(--green);
    font-weight: 700;
    margin-bottom: 6px;
    display: inline-block;
}

.dl-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    font-weight: 800;
    font-size: 11px;
    border: none;
    border-radius: 6px;
    padding: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    font-family: 'Nunito', sans-serif;
}

.dl-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

/* ===== TABS ===== */
.tabs-bar {
    max-width: 700px;
    margin: 16px auto;
    padding: 0 12px;
    display: flex;
    gap: 0;
}

.tab-btn {
    flex: 1;
    background: #f0f0f0;
    border: 2px solid #ddd;
    color: #666;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Nunito', sans-serif;
    text-align: center;
    border-radius: 0;
}

.tab-btn:first-child {
    border-radius: 10px 0 0 10px;
}

.tab-btn:last-child {
    border-radius: 0 10px 10px 0;
}

.tab-btn.active,
.tab-btn:hover {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    border-color: #4CAF50;
}

/* ===== APP LIST ===== */
.apps-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 12px 40px;
}

.apps-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.app-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 10px;
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
    animation: fade-up 0.4s ease both;
}

.app-row:hover {
    background: rgba(0, 0, 0, 0.02);
}

.app-row-num {
    font-size: 14px;
    font-weight: 700;
    color: #999;
    min-width: 22px;
    text-align: center;
    font-family: 'Rajdhani', sans-serif;
}

.app-row-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid #e0e0e0;
}

.app-row-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-row-info {
    flex: 1;
    min-width: 0;
}

.app-row-name {
    font-weight: 800;
    font-size: 14px;
    color: #1a1a1a;
    margin-bottom: 3px;
    line-height: 1.2;
}

.app-row-bonus {
    font-size: 11px;
    color: #d32f2f;
    font-weight: 700;
    line-height: 1.4;
}

.app-row-withdraw {
    font-size: 11px;
    color: #1565c0;
    font-weight: 600;
    line-height: 1.4;
}

.app-row-dl {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    font-weight: 800;
    font-size: 12px;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.app-row-dl:hover {
    background: linear-gradient(135deg, #66BB6A, #43A047);
    box-shadow: 0 3px 12px rgba(76, 175, 80, 0.4);
    transform: scale(1.05);
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.new-badge,
.hot-badge {
    display: none;
}

/* ===== NOTICE ===== */
.notice-box {
    max-width: 1100px;
    margin: 0 auto 24px;
    padding: 0 12px;
}

.notice-inner {
    background: rgba(255, 68, 68, 0.08);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 12px;
    color: #ccc;
    line-height: 1.7;
}

.notice-inner strong {
    color: var(--gold);
}

.notice-inner a {
    color: var(--blue);
}

/* ===== TELEGRAM SECTION ===== */
.tg-section {
    max-width: 1100px;
    margin: 0 auto 30px;
    padding: 0 12px;
}

.tg-card {
    background: linear-gradient(135deg, #003d6b, #001f3a);
    border: 1.5px solid #0088cc;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
}

.tg-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    color: #4fc3f7;
    margin-bottom: 6px;
}

.tg-card p {
    font-size: 13px;
    color: #666;
    margin-bottom: 14px;
}

.tg-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0088cc;
    color: white;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 14px;
    transition: all 0.2s;
}

.tg-btn:hover {
    background: #006fa3;
    transform: scale(1.04);
}

/* ===== FOOTER ===== */
footer {
    background: #f5f5f5;
    border-top: 1px solid #e0e0e0;
    padding: 20px 16px;
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
}

footer a {
    color: var(--blue);
    text-decoration: none;
    margin: 0 8px;
}

footer .footer-logo {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 8px;
}

footer .social-btns {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 12px 0;
}

footer .social-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s;
}

footer .social-btn:hover {
    opacity: 0.85;
}

footer .tg-social {
    background: #0088cc;
    color: white;
}

footer .wa-social {
    background: #25d366;
    color: white;
}

.share-bar {
    max-width: 1100px;
    margin: 0 auto 20px;
    padding: 0 12px;
    text-align: center;
}

.share-bar p {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
    font-weight: 600;
}

.share-btns {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    color: white;
    text-decoration: none;
    display: inline-block;
}

.share-btn:hover {
    transform: scale(1.05);
}

.s-wa {
    background: #25d366;
}

.s-tg {
    background: #0088cc;
}

.s-fb {
    background: #1877f2;
}

.s-tw {
    background: #1da1f2;
}

.marquee-wrap {
    background: rgba(255, 215, 0, 0.07);
    border-top: 1px solid rgba(255, 215, 0, 0.15);
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    padding: 6px 0;
    overflow: hidden;
    margin-bottom: 16px;
}

.marquee-inner {
    display: flex;
    gap: 40px;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
}

.marquee-inner span {
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
    flex-shrink: 0;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ===== DISCLAIMER MODAL ===== */
.disclaimer-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(8px);
}

.disclaimer-box {
    background: #ffffff;
    border: 2px solid #4CAF50;
    border-radius: 16px;
    padding: 24px;
    max-width: 480px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.disclaimer-header {
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #d32f2f;
    text-align: center;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.disclaimer-content p {
    font-size: 13px;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.6;
}

.disclaimer-content strong {
    color: #d32f2f;
}

.disclaimer-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 16px 0;
    font-size: 13px;
    color: var(--text);
    cursor: pointer;
    line-height: 1.4;
}

.disclaimer-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #4CAF50;
    flex-shrink: 0;
}

.disclaimer-agree-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    font-weight: 800;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    transition: all 0.3s;
}

.disclaimer-agree-btn:disabled {
    background: #e0e0e0;
    color: #666;
    cursor: not-allowed;
}

.disclaimer-agree-btn:not(:disabled):hover {
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.4);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px 12px;
}

.about-inner {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 20px;
}

.about-inner h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 12px;
}

.about-inner p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 10px;
}

.about-contact {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.support-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    background: linear-gradient(135deg, #0088cc, #005fa3);
    color: white;
}

.channel-btn {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
}

.support-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

/* ─── RESPONSIVE BANNER ─── */
@media (max-width: 768px) {
    .banner {
        height: 180px;
    }

    .main-title {
        font-size: 38px;
    }

    .icon-float {
        transform: scale(0.8);
    }

    /* Adjust positions for tablet */
    .icon1 {
        left: 5px;
    }

    .icon2 {
        left: 80px;
    }

    .icon5 {
        left: 40px;
        bottom: 10px;
    }

    .icon3 {
        right: 5px;
    }

    .icon4 {
        right: 80px;
    }

    .icon6 {
        right: 40px;
        bottom: 10px;
    }
}

@media (max-width: 480px) {
    .banner {
        height: 160px;
        margin-top: 10px;
    }

    .center-content {
        width: 100%;
        padding: 0 10px;
    }

    .main-title {
        font-size: 26px;
        letter-spacing: 1px;
        margin-bottom: 2px;
    }

    .sub-title {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .bonus-pill {
        font-size: 10px;
        padding: 3px 10px;
        margin-bottom: 10px;
    }

    .cta-btn {
        font-size: 12px;
        padding: 5px 14px;
        height: 32px;
    }

    .crown {
        font-size: 20px;
        margin-bottom: 0;
    }

    /* Keep only main icons on mobile to prevent crowding */
    .icon1 {
        width: 45px;
        height: 45px;
        left: 5px;
        top: 50%;
        transform: translateY(-50%);
        animation: none;
    }

    .icon3 {
        width: 45px;
        height: 45px;
        right: 5px;
        top: 50%;
        transform: translateY(-50%);
        animation: none;
    }

    /* Hide others on mobile */
    .icon2,
    .icon4,
    .icon5,
    .icon6 {
        display: none;
    }

}

/* ─── SIDE TELEGRAM BUTTON ─── */
.side-tg-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2000;
    width: 44px;
    height: 44px;
    background: #0088cc;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px 0 0 6px;
    box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s;
}

.side-tg-btn:hover {
    transform: translateY(-50%) translateX(-4px);
}

.side-tg-btn img {
    width: 28px;
    height: 28px;
}

/* ─── DOWNLOAD PAGE OVERLAY ─── */
.download-page {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 3000;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    font-family: 'Rajdhani', sans-serif;
    color: var(--text);
}

.dp-header {
    background: linear-gradient(90deg, #8e2de2, #4a00e0);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 3001;
}

.dp-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.dp-verified {
    font-size: 14px;
    color: #00e676;
    /* Verified check */
}

.dp-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.dp-content {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
    padding: 16px;
    padding-bottom: 40px;
}

.dp-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
}

.dp-icon-row {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    margin-bottom: 20px;
    justify-content: flex-start;
}

.dp-icon {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.dp-info h1 {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 4px;
    font-family: 'Teko', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dp-info p {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.dp-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 16px 0;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
    border-right: 1px solid #eee;
}

.stat-box:last-child {
    border-right: none;
}

.stat-val {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.stat-label {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
}

.dp-dl-btn {
    display: block;
    background: #0044ff;
    /* Strong Blue */
    color: white;
    text-decoration: none;
    font-weight: 800;
    padding: 14px;
    border-radius: 50px;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0, 68, 255, 0.3);
    margin-bottom: 16px;
    animation: btn-pulse 2s infinite;
}

.dp-tg-btn {
    display: block;
    color: #0088cc;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    border: 1px dashed #0088cc;
    padding: 10px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.dp-related {
    margin-top: 20px;
}

.dp-rel-header {
    background: #2E7D32;
    color: white;
    padding: 10px;
    border-radius: 8px 8px 0 0;
    font-weight: 700;
    text-align: center;
    font-size: 14px;
}

.dp-rel-list {
    background: transparent;
    border-radius: 0 0 8px 8px;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Reusing app row styles for related, but modifying slightly */
.dp-rel-list .app-row {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    border-bottom: none;
    border-radius: 12px;
    animation: none !important;
}

/* ─── RANK BADGES ─── */
.featured-card {
    position: relative;
    overflow: hidden;
}

.rank-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 0 0 12px 0;
    font-size: 12px;
    z-index: 10;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    font-family: 'Rajdhani', sans-serif;
}