 :root {
    --gold: #f0a500;
    --gold-light: #ffd060;
    --dark: #0d0e14;
    --dark2: #161820;
    --dark3: #1e2030;
    --dark4: #252840;
    --red: #e63946;
    --green: #2ec27e;
    --text: #e8e8f0;
    --text-muted: #8888aa;
    --radius: 12px;
  }
 
  * { box-sizing: border-box; margin: 0; padding: 0; }
  
  body {
    background: #1a1c28;
    font-family: 'Barlow', sans-serif;
    color: var(--text);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
 
  /* Mobile shell */
  .phone-shell {
    width: 100%;
    max-width: 420px;
    min-height: 100vh;
    background: var(--dark);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 60px rgba(240,165,0,0.15);
  }
 
  /* ── TOP BAR ── */
  .top-bar {
    background: var(--dark2);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(240,165,0,0.15);
  }
 
  .logo {
    display: flex;
    align-items: center;
    gap: 8px;
  }
 .logo img{
    width: 110px;
 }
  .logo-icon {
    width: 36px;
    height: 36px;
    background: radial-gradient(circle, #f0a500, #a06000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  }
 
  .logo-text {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    line-height: 1;
  }
  .logo-text span { display: block; }
  .logo-text .fn { font-size: 18px; color: var(--gold); letter-spacing: 1px; }
  .logo-text .ex { font-size: 10px; color: var(--text-muted); letter-spacing: 3px; }
 
  .top-actions { display: flex; gap: 8px; }
 
  .btn-signup {
    background: var(--gold);
    color: #000;
    border: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: all 0.2s;
  }
  .btn-signup:hover { background: var(--gold-light); }
 
  .btn-login {
    background: var(--red);
    color: #fff;
    border: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: all 0.2s;
  }
  .btn-login:hover { filter: brightness(1.15); }
 
  /* ── NEWS TICKER ── */
  .news-bar {
    background: #0a0b10;
    padding: 6px 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(240,165,0,0.1);
    display: flex;
    align-items: center;
  }
 
  .news-label {
    background: var(--gold);
    color: #000;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 11px;
    padding: 2px 10px;
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 1;
  }
 
  .ticker-wrap { overflow: hidden; flex: 1; }
  .ticker-text {
    display: inline-block;
    white-space: nowrap;
    font-size: 12px;
    color: #ccc;
    animation: ticker 28s linear infinite;
    padding-left: 20px;
  }
  .ticker-text .date-badge {
    background: #1e4a8a;
    color: #7eb8ff;
    padding: 1px 6px;
    border-radius: 3px;
    font-size: 10px;
    margin-right: 8px;
  }
  @keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
  }
 
  /* ── SCROLLABLE CONTENT ── */
  .scroll-body {
    flex: 1;
    overflow-y: auto;
    scrollbar-width: none;
  }
  .scroll-body::-webkit-scrollbar { display: none; }
 
  /* ── BANNER CAROUSEL ── */
  .banner-carousel { position: relative; }
  .carousel-item { height: 170px; overflow: hidden; }
  .carousel-item .banner-inner {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
 
  .banner-skyward { background: linear-gradient(135deg, #0d1b3e 0%, #1a0a4a 50%, #0d1b3e 100%); }
  .banner-withdraw { background: linear-gradient(135deg, #0a1f3a 0%, #102a50 50%, #0a1f3a 100%); }
  .banner-ipl { background: linear-gradient(135deg, #1a0800 0%, #3d1000 50%, #1a0800 100%); }
 
  .banner-content {
    position: absolute;
    left: 40px;
    z-index: 2;
  }
  .banner-content h2 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 1;
    color: #fff;
  }
  .banner-content .sub {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
  }
  .banner-content .badge-gold {
    display: inline-block;
    background: var(--gold);
    color: #000;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 20px;
    margin-top: 8px;
  }
 
  .banner-graphic {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 55%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    opacity: 0.3;
  }
 
  .banner-deco { /* floating coins/stars */
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    overflow: hidden;
  }
  .coin {
    position: absolute;
    width: 18px; height: 18px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.6;
    animation: floatCoin 4s ease-in-out infinite;
  }
  .coin:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
  .coin:nth-child(2) { top: 60%; left: 20%; animation-delay: 0.8s; width: 12px; height: 12px; }
  .coin:nth-child(3) { top: 30%; right: 20%; animation-delay: 1.5s; width: 10px; height: 10px; }
  @keyframes floatCoin {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
 
  .carousel-control-prev, .carousel-control-next {
    width: 30px;
    opacity: 1;
  }
  .carousel-control-prev-icon, .carousel-control-next-icon {
    width: 22px;
    height: 22px;
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
    background-size: 60%;
  }
  .carousel-indicators button {
    width: 6px; height: 6px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.4);
    border: none;
  }
  .carousel-indicators button.active { background-color: var(--gold); }
 
  /* ── LIVE SPORTS CARD ── */
  .live-card {
    margin: 10px 10px 0;
    background: linear-gradient(135deg, var(--dark3), #1a1f40);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(240,165,0,0.15);
  }
 
  .live-card-header {
    background: linear-gradient(90deg, #1a2060, #0f1540);
    padding: 5px 1px 5px 1px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
 
  .live-badge {
    background: var(--red);
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .live-dot {
    width: 6px; height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: blink 1s ease-in-out infinite;
  }
  @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
 
  .sport-counts { display: flex; gap: 8px; }
  .sport-pill {
    background: rgba(255,255,255,0.08);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .sport-pill .cnt {
    background: var(--gold);
    color: #000;
    font-weight: 700;
    width: 16px; height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
  }
 
  .live-card-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
 
  .live-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--gold);
  }
 
  .live-sports-icons { display: flex; gap: -5px; font-size: 24px; }
 
  .btn-play {
    background: var(--gold);
    color: #000;
    border: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 13px;
    padding: 6px 18px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .btn-play:hover { background: var(--gold-light); transform: scale(1.03); }
 
  /* ── GAMES GRID ── */
  .section-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 14px 6px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.08);
  }
 
  .games-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0 10px;
  }
 
  .game-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    height: 130px;
    cursor: pointer;
    transition: transform 0.2s;
  }
  .game-card:hover { transform: scale(1.02); }
 
  .game-card .bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    opacity: 0.25;
  }
  .game-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.85) 100%);
  }
  .game-card .card-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .game-card .game-name {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 16px;
  }
  .btn-play-sm {
    background: var(--gold);
    color: #000;
    border: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
  }
 
  .game-teen  { background: linear-gradient(135deg, #3d0020, #1a0010); }
  .game-andar { background: linear-gradient(135deg, #1a1500, #3d3000); }
  .game-roul  { background: linear-gradient(135deg, #001a0d, #003020); }
  .game-cricket { background: linear-gradient(135deg, #001533, #002a66); }
  .game-horse { background: linear-gradient(135deg, #1a0d00, #3d2000); }
  .game-soccer{ background: linear-gradient(135deg, #001a10, #003d20); }
  .game-tennis{ background: linear-gradient(135deg, #1a0033, #3d0066); }
 
  /* ── FEATURES ── */
  .features-section {
    background: var(--dark2);
    margin: 14px 10px;
    border-radius: var(--radius);
    padding: 14px;
    border: 1px solid rgba(240,165,0,0.1);
  }
  .features-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
  }
  .features-logo .brand {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--gold);
  }
  .badge-legal {
    background: var(--green);
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .btn-support {
    background: #1e5fff;
    color: #fff;
    border: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .join-label {
    text-align: center;
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
  }
  .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
  }
  .feature-icon {
    width: 44px; height: 44px;
    background: rgba(240,165,0,0.1);
    border: 1px solid rgba(240,165,0,0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }
  .feature-item span {
    font-size: 10px;
    color: var(--text-muted);
    line-height: 1.3;
  }
 
  /* ── FOOTER LINKS ── */
  .footer-links {
    padding: 0 14px 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    justify-content: center;
  }
  .footer-links a {
    color: var(--text-muted);
    font-size: 11px;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--gold); }
 
  /* ── SOCIAL ICONS ── */
  .social-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 8px 14px 14px;
  }
  .social-btn {
    width: 34px; height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-decoration: none;
    transition: transform 0.2s;
  }
  .social-btn:hover { transform: scale(1.15); }
  .fb { background: #1877f2; color: #fff; }
  .wa { background: #25d366; color: #fff; }
  .tg { background: #2aabee; color: #fff; }
  .tw { background: #000; color: #fff; border: 1px solid #333; }
  .ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
  .yt { background: #ff0000; color: #fff; }
 
  /* ── PAYMENT LOGOS ── */
  .payment-row {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 0 14px 16px;
    scrollbar-width: none;
  }
  .payment-row::-webkit-scrollbar { display: none; }
  .pay-badge {
    background: var(--dark3);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .pay-phonepe { color: #6739b6; }
  .pay-mc { color: #eb001b; }
  .pay-kotak { color: #ee3124; }
  .pay-indus { color: #004c97; }
  .pay-upi { color: #1e8900; }
 
  /* ── BOTTOM NAV ── */
  .bottom-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 420px;
    background: var(--dark2);
    border-top: 1px solid rgba(240,165,0,0.2);
    display: flex;
    z-index: 100;
  }
 
  .nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 4px 6px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 10px;
    font-family: 'Barlow', sans-serif;
    gap: 4px;
    border: none;
    background: transparent;
  }
  .nav-item .nav-icon { font-size: 20px; }
  .nav-item.active { color: var(--gold); }
  .nav-item.home-item {
    background: var(--gold);
    color: #000;
    border-radius: 12px 12px 0 0;
    margin: 0 2px;
    padding: 6px 4px 4px;
    font-weight: 700;
  }
  .nav-item.home-item .nav-icon { font-size: 22px; }
  .nav-item:not(.home-item):hover { color: var(--gold); }
 
  /* ── CHAT BUTTON ── */
  .chat-float {
    position: fixed;
    right: calc(50vw - 210px + 10px);
    bottom: 80px;
    width: 42px; height: 42px;
    background: #1e5fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(30,95,255,0.5);
    z-index: 99;
    transition: transform 0.2s;
  }
  .chat-float:hover { transform: scale(1.1); }
 
  /* ── SOCIALS BAR (top follow us) ── */
  .follow-bar {
    background: var(--dark2);
    padding: 10px 14px;
    border-top: 1px solid rgba(240,165,0,0.1);
  }
  .follow-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    text-align: center;
  }
  .follow-pills {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
    justify-content: center;
  }
  .follow-pills::-webkit-scrollbar { display: none; }
  .follow-pill {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s;
    flex-shrink: 0;
  }
  .follow-pill:hover { opacity: 0.85; }
  .pill-wa { background: #25d366; color: #fff; }
  .pill-fb { background: #1877f2; color: #fff; }
  .pill-tw { background: #000; color: #fff; border: 1px solid #333; }
  .pill-ig { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); color: #fff; }
  .pill-tg { background: #2aabee; color: #fff; }
  .pill-yt { background: #ff0000; color: #fff; }
  
  
  
  /* =========================
   MATCHES SECTION
========================= */

.matches-wrapper {
    margin: 12px;
    background: #151b2d;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #26304a;
}

/* =========================
   HEADER
========================= */

.matches-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: linear-gradient(
        90deg,
        #16213e,
        #1a1f2e
    );
}

.live-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.live-badge {
    background: #ff3b30;
    color: white;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pulse {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 1s infinite;
}

@keyframes pulse {

    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.live-heading {
    color: white;
    font-size: 18px;
    font-weight: 700;
}

.view-all-btn {
    background: #f5a623;
    border: none;
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

/* =========================
   MATCH LIST
========================= */

.match-list {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* =========================
   MATCH CARD
========================= */

.match-card {
    background: #1d2438;
    border-radius: 14px;
    padding: 14px;
    cursor: pointer;
    border: 1px solid #2b3550;
    transition: 0.3s;
    width:  350px;
}

.match-card:hover {
    border-color: #f5a623;
    transform: translateY(-2px);
}

/* =========================
   CARD TOP
========================= */

.match-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.league-name {
    color: #f5a623;
    font-size: 13px;
    font-weight: 700;
}

.match-type {
    background: #2c3550;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
}

/* =========================
   TEAMS
========================= */

.teams-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.team {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.team img {

    width: 56px;
    height: 56px;
    object-fit: contain;
    margin-bottom: 8px;
}

.team span {
    color: white;
    font-size: 13px;
    font-weight: 600;
}

.vs-badge {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        #f5a623,
        #ffcc33
    );

    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-weight: 900;
}

/* =========================
   MATCH BOTTOM
========================= */

.match-bottom {

    display: flex;
    justify-content: space-between;
    margin-top: 16px;
    color: #9ba6c2;
    font-size: 12px;
}

/* =========================
   MODAL
========================= */

#matchModal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.bet-card {
    width: 100%;
    max-width: 380px;
    background: #111827;
    border-radius: 20px;
    padding: 22px;
    position: relative;
}

.close-btn {
    position: absolute;
    right: 18px;
    top: 14px;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

.bet-btn {

    display: block;
    width: 100%;
    text-align: center;
    margin-top: 20px;
    background: #25d366;
    color: white;
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
}

/* =========================
   MODAL OVERLAY
========================= */

#matchModal {

    position: fixed;
    inset: 0;

    background: rgba(0,0,0,0.82);

    display: none;

    align-items: center;
    justify-content: center;

    padding: 20px;

    z-index: 99999;

    overflow-y: auto;

    backdrop-filter: blur(6px);
}

/* =========================
   MODAL CARD
========================= */

.bet-card {

    width: 100%;
    max-width: 420px;

    background: linear-gradient(
        180deg,
        #121a2f,
        #0d1324
    );

    border-radius: 24px;

    padding: 24px 20px;

    position: relative;

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 10px 40px rgba(0,0,0,0.45);

    animation: modalFade 0.3s ease;
}

/* =========================
   MODAL ANIMATION
========================= */

@keyframes modalFade {

    from {
        opacity: 0;
        transform: translateY(20px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* =========================
   CLOSE BUTTON
========================= */

.close-btn {

    position: absolute;

    top: 14px;
    right: 18px;

    color: #fff;

    font-size: 30px;
    font-weight: 300;

    cursor: pointer;

    transition: 0.2s;
}

.close-btn:hover {

    transform: rotate(90deg);
    color: #f5a623;
}

/* =========================
   LEAGUE PILL
========================= */

.league-pill {

    display: inline-flex;
    align-items: center;
    gap: 8px;

    background: rgba(245,166,35,0.12);

    border: 1px solid rgba(245,166,35,0.25);

    padding: 8px 14px;

    border-radius: 30px;

    margin-bottom: 24px;
}

.league-dot {

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #f5a623;

    animation: pulseLeague 1s infinite;
}

@keyframes pulseLeague {

    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.6;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.league-label {
    color: #f5a623;
    font-size: 13px;
    font-weight: 700;
}

/* =========================
   TEAMS CONTAINER
========================= */

.teams-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
}

/* =========================
   TEAM BLOCK
========================= */

.team-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.team-block img {

    width: 85px;
    height: 85px;
    object-fit: contain;
    margin-bottom: 12px;
}

.team-block div {
    color: white;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

/* =========================
   VS CENTER
========================= */

.vs-center {

    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        #f5a623,
        #ffcc33
    );

    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-weight: 900;
    font-size: 15px;
    box-shadow:
        0 4px 14px rgba(245,166,35,0.4);
}

/* =========================
   DIVIDER
========================= */

.divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 20px 0;
}

/* =========================
   MATCH INFO
========================= */

.match-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.info-icon {
    color: #f5a623;
    width: 18px;
    margin-top: 2px;
}

.info-text {
    color: #d4d8e2;
    font-size: 14px;
    line-height: 1.5;
    word-break: break-word;
}

/* =========================
   BUTTON
========================= */

.bet-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(
        135deg,
        #25d366,
        #1ebc59
    );
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: 0.3s;
    margin-bottom: 14px;
}

.bet-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 20px rgba(37,211,102,0.4);
}

/* =========================
   NOTE
========================= */

.secure-note {
    text-align: center;
    color: #8f9ab5;
    font-size: 12px;
}
footer{
    padding: 37px 0px 75px 0;
}
.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.footer-brand img {
    height: 40px;
}

/* =========================
   BADGES
========================= */

.footer-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
}

.footer-badge i {
    font-size: 18px;
}

.legal-badge {
    color: white;
}

.support-badge {
    color: white;
}

/* =====================================
   COMMON SECTION
===================================== */

.section-heading {

    display: flex;
    align-items: center;
    gap: 10px;
    color: #f5a623;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-heading i {
    font-size: 20px;
}

.process-subtitle {
    color: #9ca3af;
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 22px;
}

/* =====================================
   PROCESS SECTION
===================================== */

.process-section {
    padding: 22px 16px;
    background: #111827;
    border-radius: 20px;
    margin: 18px 12px;
    border: 1px solid rgba(255,255,255,0.06);
}

/* STEP CARD */

.process-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 18px;
    padding: 16px;
    margin-bottom: 14px;
    transition: 0.3s;
}

.process-card:hover {
    transform: translateY(-2px);
    border-color: rgba(245,166,35,0.25);
}

/* STEP NUMBER */

.step-number {
    min-width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        #f5a623,
        #ffcc33
    );

    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-weight: 800;
    font-size: 18px;
}

/* CONTENT */

.step-content {
    flex: 1;
}

.step-title {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.step-desc {
    color: #9ca3af;
    font-size: 10px;
    line-height: 1.5;
}

/* ICON */

.step-icon {

    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(245,166,35,0.08);
    border: 1px solid rgba(245,166,35,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f5a623;
    font-size: 18px;
}

/* =====================================
   FAQ SECTION
===================================== */

.faq-section {
    padding: 22px 16px 30px;
    background: #111827;
    border-radius: 20px;
    margin: 18px 12px;
    border: 1px solid rgba(255,255,255,0.06);
}

/* ACCORDION */

.accordion {

    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: transparent;
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-active-bg: transparent;
    --bs-accordion-btn-bg: transparent;
    --bs-accordion-btn-color: white;
    --bs-accordion-active-color: #f5a623;
}

/* ITEM */

.accordion-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px !important;
    overflow: hidden;
    margin-bottom: 14px;
}

/* BUTTON */

.accordion-button {
    background: transparent !important;
    color: white !important;
    font-size: 15px;
    font-weight: 600;
    padding: 18px;
}

.accordion-button:not(.collapsed) {

    box-shadow: none;
}

/* BODY */

.accordion-body {
    color: #9ca3af;
    font-size: 10px;
    line-height: 1.7;
    padding-top: 0;
}

/* ARROW */

.accordion-button::after {
    filter: brightness(5);
}




/* =====================================
   AUTH LAYOUT
===================================== */

.auth-layout{

    width:100%;
    min-height:100vh;

    display:flex;

    overflow:hidden;
}

/* =====================================
   PANEL
===================================== */

.auth-panel{

    width:420px;
    min-width:420px;

    background:#ffb800;

    display:flex;
    flex-direction:column;
    justify-content:space-between;

    position:relative;

    z-index:2;
}

/* =====================================
   HEADER
===================================== */

.auth-header{

    height:180px;

    background:#111;

    border-bottom-left-radius:80px;
    border-bottom-right-radius:80px;

    display:flex;
    align-items:center;
    justify-content:center;
}

.auth-logo{

    width:220px;
    max-width:90%;
}

/* =====================================
   CLOSE BUTTON
===================================== */

.auth-close-btn{

    position:absolute;

    top:18px;
    right:18px;

    width:54px;
    height:54px;

    border:none;

    border-radius:50%;

    background:rgba(0,0,0,0.7);

    color:#fff;

    font-size:34px;

    cursor:pointer;
}

/* =====================================
   BODY
===================================== */

.auth-body{

    padding:35px;
}

/* =====================================
   TITLE
===================================== */

.auth-title-wrap{

    margin-bottom:28px;
}

.auth-title{

    font-size:34px;
    font-weight:800;

    color:#111;
}

.auth-subtitle{

    margin-top:6px;

    font-size:14px;

    color:#333;
}

/* =====================================
   FORM
===================================== */

.auth-form{

    width:100%;
}

/* =====================================
   FIELD
===================================== */

.auth-field{

    margin-bottom:22px;
}

/* =====================================
   LABEL
===================================== */

.auth-label{

    display:block;

    margin-bottom:10px;

    font-size:14px;
    font-weight:700;

    color:#111;
}

/* =====================================
   ROW BETWEEN
===================================== */

.auth-row-between{

    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* =====================================
   INPUT
===================================== */

.auth-input{

    width:100%;
    height:56px;

    border:none;

    border-radius:12px;

    padding:0 18px;

    font-size:15px;

    outline:none;

    background:#f5f5f5;
}

/* =====================================
   LINKS
===================================== */

.auth-link{

    color:#111;

    text-decoration:none;

    font-size:13px;
    font-weight:700;
}

/* =====================================
   BUTTON
===================================== */

.auth-btn{

    width:100%;
    height:58px;

    border:none;

    border-radius:14px;

    background:linear-gradient(
        180deg,
        #222,
        #000
    );

    color:#ffb800;

    font-size:20px;
    font-weight:800;

    cursor:pointer;

    transition:.3s;
}

.auth-btn:hover{

    transform:translateY(-2px);
}

/* =====================================
   EXTRA TEXT
===================================== */

.auth-extra{

    margin-top:24px;

    text-align:center;

    font-size:15px;

    color:#111;
}

.auth-extra a{

    color:#005eff;

    text-decoration:none;

    font-weight:700;
}

/* =====================================
   FOOTER
===================================== */

.auth-footer{

    padding:20px;

    border-top:1px solid rgba(0,0,0,0.15);

    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
}

.auth-footer a{

    color:#111;

    text-decoration:none;

    font-size:13px;
}

/* =====================================
   BANNER
===================================== */

.auth-banner{

    flex:1;

    position:relative;

    overflow:hidden;
}

.auth-banner-img{

    width:100%;
    height:100%;

    object-fit:cover;
}

.auth-banner-overlay{

    position:absolute;
    inset:0;

    background:rgba(0,0,0,0.2);
}

.auth-banner-content{

    position:absolute;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    text-align:center;

    color:#fff;

    z-index:2;
}

.auth-banner-content h2{

    font-size:60px;
    font-weight:900;
    letter-spacing:4px;
}

.auth-banner-content span{

    font-size:24px;
    letter-spacing:5px;
}

/* =====================================
   TABLET
===================================== */

@media(max-width:991px){

    .auth-panel{

        width:380px;
        min-width:380px;
    }

    .auth-banner-content h2{

        font-size:42px;
    }

    .auth-banner-content span{

        font-size:18px;
    }
}

/* =====================================
   MOBILE
===================================== */

@media(max-width:768px){

    .auth-layout{

        flex-direction:column;
    }

    .auth-banner{

        height:240px;

        order:-1;
    }

    .auth-panel{

        width:100%;
        min-width:100%;
    }

    .auth-header{

        height:120px;

        border-bottom-left-radius:50px;
        border-bottom-right-radius:50px;
    }

    .auth-body{

        padding:25px 20px;
    }

    .auth-title{

        font-size:28px;
    }

    .auth-banner-content h2{

        font-size:34px;
    }

    .auth-banner-content span{

        font-size:14px;
    }
}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 600px) {

    .section-heading {
        font-size: 18px;
    }

    .step-title {
        font-size: 15px;
    }

    .step-desc {
        font-size: 10px;
    }

    .accordion-button {
        font-size: 14px;
    }

    .accordion-body {
        font-size: 13px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    #matchModal {

        padding: 12px;
    }

    .bet-card {
        padding: 20px 16px;
        border-radius: 20px;
    }

    .teams-container {
        gap: 8px;
    }

    .team-block img {
        width: 65px;
        height: 65px;
    }

    .team-block div {
        font-size: 13px;
    }

    .vs-center {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 13px;
    }

    .league-label {
        font-size: 12px;
    }

    .info-text {
        font-size: 13px;
    }

    .bet-btn {
        height: 48px;
        font-size: 15px;
    }
}


@media (max-width: 480px) {
    .phone-shell {
        max-width: 360px;
    }
}

@media (max-width: 768px) {
    .phone-shell {
        max-width: 360px;
    }
}
