/* ═══════════════════════════════════════════════════
   100CUCI – Faithful Clone Stylesheet
   Colors: Blue #1779FF · Dark #0F4BC8 · Navy #0b1f3a
   Red #F53B3B · Body BG #f6f8fb
   ═══════════════════════════════════════════════════ */

/* ─── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 100%; scroll-behavior: smooth; }
body {
    font-family: 'Raleway', 'Poppins', sans-serif;
    background: #f6f8fb;
    color: #2b3a52;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 65px;
}
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ─── Sticky Header ────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #1779ff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.header-inner {
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 20px;
    min-height: 70px;
}
.logo img { height: 50px; width: auto; }
.header-right { display: flex; align-items: center; gap: 14px; }
.whatsapp-btn img { height: 36px; width: auto; border-radius: 6px; }

/* Hamburger */
.hamburger {
    width: 28px; height: 22px;
    display: flex; flex-direction: column;
    justify-content: space-between;
    padding: 0;
}
.hamburger span {
    display: block; width: 100%; height: 3px;
    background: #fff; border-radius: 2px;
    transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(9.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
    max-height: 0;
    overflow: hidden;
    background: #0F4BC8;
    transition: max-height 0.4s ease;
}
.mobile-menu.open { max-height: 500px; }
.mobile-menu ul { padding: 10px 0; }
.mobile-menu li { border-bottom: 1px solid rgba(255,255,255,0.1); }
.mobile-menu a {
    display: block;
    padding: 14px 24px;
    color: rgba(242,245,247,0.9);
    font-weight: 500;
    font-size: 0.95rem;
    transition: background 0.2s;
}
.mobile-menu a:hover { background: rgba(255,255,255,0.08); color: #fff; }
.admin-link { color: #ffd700 !important; }

/* ─── Marquee ──────────────────────────────────────── */
.marquee-bar {
    overflow: hidden;
    white-space: nowrap;
    background: linear-gradient(90deg, #0F4BC8, #1779FF 45%, #0F4BC8);
    color: #fff;
    font-weight: 600;
    font-size: 13.5px;
    line-height: 34px;
    border-top: 1px solid rgba(255,255,255,0.15);
    border-bottom: 1px solid rgba(0,0,0,0.35);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3) inset, 0 0 12px rgba(23,121,255,0.35);
    text-shadow: 0 0 6px rgba(255,255,255,0.45);
}
.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marqueeScroll 22s linear infinite;
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
.marquee-bar:hover .marquee-content { animation-play-state: paused; }

/* ─── Hero Slider ──────────────────────────────────── */
.hero-slider {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    aspect-ratio: 16 / 6;
    overflow: hidden;
    background: #0b1f3a;
}
.slides-wrapper { position: relative; width: 100%; height: 100%; }
.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}
.slide.active { opacity: 1; }
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s;
}
.slider-arrow:hover { background: rgba(0,0,0,0.7); }
.slider-arrow.prev { left: 16px; }
.slider-arrow.next { right: 16px; }
.slider-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.slider-dots .dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    cursor: pointer;
    transition: all 0.3s;
}
.slider-dots .dot.active { background: #fff; transform: scale(1.3); }

/* ─── App Strip ────────────────────────────────────── */
.app-strip {
    max-width: 1920px;
    margin: 0 auto;
    background: #fff;
}
.app-strip img { width: 100%; }

/* ─── Wallet Section ───────────────────────────────── */
.wallet-section {
    max-width: 1920px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
}
.download-banner { margin-bottom: 16px; }
.download-banner img { width: 100%; border-radius: 8px; }
.wallet-panel {
    background: linear-gradient(135deg, #0b1f3a, #1a3568);
    border-radius: 12px;
    padding: 20px;
    color: #fff;
}
.wallet-head {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}
.btn-gif { display: block; flex: 1; }
.btn-gif img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.2s;
}
.btn-gif:hover img { transform: scale(1.03); }
.wallet-label { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 4px; }
.wallet-amount { font-size: 1.8rem; font-weight: 700; color: #ffd700; margin-bottom: 12px; }
.wallet-limits {
    display: flex;
    gap: 20px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 16px;
}
.wallet-actions {
    display: flex;
    gap: 10px;
}
.wallet-actions .btn-gif { flex: 1; }
.wallet-actions button { padding: 0; }

/* ─── Jackpot Section ──────────────────────────────── */
.jackpot-section {
    max-width: 1920px;
    margin: 0 auto;
    background: #fff;
    text-align: center;
    padding: 20px;
}
.jackpot-section img { max-width: 450px; margin: 0 auto; }

/* ─── Promo Buttons Grid ──────────────────────────── */
.promo-btns-section {
    max-width: 1920px;
    margin: 0 auto;
    background: #fff;
    padding: 0 20px 20px;
}
.promo-btns-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.promo-btn-item img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.2s;
}
.promo-btn-item:hover img { transform: scale(1.03); }

/* ─── Provider Carousel ────────────────────────────── */
.provider-carousel-section {
    max-width: 1920px;
    margin: 0 auto;
    background: #fff;
    padding: 16px 20px;
}
.provider-carousel {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 4px 0;
}
.provider-carousel::-webkit-scrollbar { display: none; }
.provider-carousel img {
    height: 65px;
    width: auto;
    flex-shrink: 0;
    scroll-snap-align: start;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s;
}
.provider-carousel img:hover { transform: scale(1.08); }

/* ─── Game Tabs ────────────────────────────────────── */
.games-section {
    max-width: 1920px;
    margin: 0 auto;
    background: #fff;
    padding: 0 16px 24px;
}
.game-tabs {
    display: flex;
    gap: 6px;
    padding: 10px 0;
    overflow-x: auto;
    scrollbar-width: none;
}
.game-tabs::-webkit-scrollbar { display: none; }
.game-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    border-radius: 12px;
    background: rgba(0,0,0,0.04);
    border: 2px solid transparent;
    transition: all 0.25s;
    flex-shrink: 0;
    min-width: 70px;
}
.game-tab img { width: 36px; height: 36px; object-fit: contain; }
.game-tab span { font-size: 0.7rem; font-weight: 600; color: #555; }
.game-tab.active {
    border-color: #1779FF;
    background: rgba(23,121,255,0.08);
    box-shadow: 0 2px 10px rgba(23,121,255,0.15);
}
.game-tab.active span { color: #1779FF; }
.game-tab:hover { border-color: #1779FF; }

/* Game Grid */
.game-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}
.game-card {
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s;
}
.game-card:hover { transform: scale(1.04); }
.game-card img {
    width: 100%;
    aspect-ratio: 346 / 457;
    object-fit: cover;
    border-radius: 10px;
}

/* ─── SEO Section ──────────────────────────────────── */
.seo-section {
    max-width: 1920px;
    margin: 0 auto;
    background: #fff;
    padding: 40px 24px;
    border-top: 1px solid #e3e8ef;
}
.seo-inner { max-width: 960px; margin: 0 auto; }
.seo-inner h1, .seo-inner h2, .seo-inner h3 {
    font-family: 'Raleway', sans-serif;
    color: #0b1f3a;
    margin-bottom: 12px;
}
.seo-inner h1 { font-size: 1.8rem; font-weight: 700; line-height: 1.3; }
.seo-inner h2 { font-size: 1.4rem; font-weight: 600; margin-top: 28px; }
.seo-inner h3 { font-size: 1.1rem; font-weight: 600; margin-top: 24px; }
.seo-inner p {
    font-size: 0.95rem;
    color: #2b3a52;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* ─── Footer ───────────────────────────────────────── */
.site-footer {
    background: #f6f8fb;
    border-top: 1px solid #e3e8ef;
    padding: 30px 20px 80px;
    text-align: center;
}
.footer-logo img { height: 45px; margin: 0 auto 12px; }
.footer-copy { font-size: 0.75rem; color: #888; }

/* ─── Bottom Navigation Bar ────────────────────────── */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: #0b1f3a;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1001;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.5);
    border-top: 1px solid rgba(23,121,255,0.15);
}
.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    height: 100%;
    color: #fff;
    text-decoration: none;
    position: relative;
    transition: background 0.2s;
}
.bottom-nav-item.active {
    background: rgba(255,255,255,0.05);
}

/* Icon Wrap */
.bnav-icon-wrap {
    width: 35px; height: 35px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
.bnav-icon-wrap img { width: 100%; height: auto; display: block; }

/* Bonus button is special - larger */
.bonus-wrap {
    width: 55px; height: 55px;
}
.bonus-wrap img { width: 100%; }

/* Badge */
.bnav-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: #ffc107;
    color: #0b1f3a;
    font-size: 0.7rem;
    font-weight: 900;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #0b1f3a;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* ─── Scroll to Top ────────────────────────────────── */
.scroll-top {
    position: fixed;
    right: 16px;
    bottom: 80px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1779FF;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(23,121,255,0.35);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.25s;
    z-index: 999;
}
.scroll-top svg { width: 22px; height: 22px; }
.scroll-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { background: #0F4BC8; transform: translateY(-2px); }

/* ─── Responsive ───────────────────────────────────── */
@media (max-width: 768px) {
    .hero-slider { aspect-ratio: 16 / 8; }
    .game-grid { grid-template-columns: repeat(4, 1fr); }
    .promo-btns-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .header-inner { padding: 6px 14px; min-height: 60px; }
    .logo img { height: 40px; }
    .whatsapp-btn img { height: 30px; }
    .hero-slider { aspect-ratio: 16 / 9; }
    .game-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
    .marquee-bar { font-size: 12px; line-height: 28px; }
    .marquee-content { animation-duration: 26s; }
    .wallet-amount { font-size: 1.4rem; }
    .seo-inner h1 { font-size: 1.4rem; }
    .seo-inner h2 { font-size: 1.15rem; }
}

@media (min-width: 769px) {
    .game-grid { grid-template-columns: repeat(6, 1fr); }
}
@media (min-width: 1200px) {
    .game-grid { grid-template-columns: repeat(8, 1fr); }
    .promo-btns-grid { grid-template-columns: repeat(4, 1fr); }
    .hamburger { display: none; }
}