/* ── Crazy Casino – Black & Gold Glassmorphism Theme ── */
:root {
  --gold: #f0c040;
  --gold-light: #ffe680;
  --gold-dark: #b8860b;
  --bg: #0a0a0a;
  --bg2: #111111;
  --bg3: #1a1a1a;
  --card: rgba(255,255,255,0.04);
  --card-border: rgba(240,192,64,0.25);
  --text: #f5f5f5;
  --muted: #888;
  --success: #22c55e;
  --danger: #ef4444;
  --warning: #f59e0b;
  --radius: 14px;
  --shadow: 0 8px 32px rgba(0,0,0,0.6);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body{
    font-family:'Segoe UI',system-ui,sans-serif;
    background:var(--bg);
    color:var(--text);
    min-height:100vh;
    max-width:480px;
    margin:0 auto;
    position:relative;
    overflow-x:hidden;
}

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Header ───────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
  padding: 12px 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.header-logo { font-size: 16px; font-weight: 900; letter-spacing: 2px; color: var(--gold); }
.header-right { display: flex; align-items: center; gap: 10px; }
.balance-badge {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 20px; padding: 4px 12px; font-size: 13px; font-weight: 700; color: var(--gold);
}
.btn-login {
  background: var(--gold); color: #000; border: none;
  border-radius: 20px; padding: 6px 16px; font-weight: 700; font-size: 13px; cursor: pointer;
}
.btn-login:hover { background: var(--gold-light); }
.btn-logout { background: transparent; border: 1px solid var(--card-border); color: var(--muted); border-radius: 20px; padding: 5px 12px; font-size: 12px; cursor: pointer; }

/* ── Bottom Nav ───────────────────────────────────── */
.bottom-nav {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 480px;
  background: rgba(10,10,10,0.95); backdrop-filter: blur(12px);
  border-top: 1px solid var(--card-border);
  display: flex; z-index: 100;
}
.nav-item {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  padding: 8px 0; font-size: 10px; color: var(--muted); cursor: pointer;
  text-decoration: none; transition: color .2s;
}
.nav-item.active, .nav-item:hover { color: var(--gold); }
.nav-icon { font-size: 20px; margin-bottom: 2px; }
.footer,
.bottom-nav{
    height: 70px;
}

.main{
    padding-bottom: calc(70px + 15px);
}
/* ── Main content area ───────────────────────────── */
.main { padding: 15px 15px 8px; }

/* ── Cards ───────────────────────────────────────── */
.card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 16px; margin-bottom: 16px;
  backdrop-filter: blur(8px);
}

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 12px 20px; border-radius: var(--radius); border: none;
  font-weight: 700; font-size: 14px; cursor: pointer; transition: all .2s;
  letter-spacing: 1px; width: 100%;
}
.btn-primary  { background: var(--gold); color: #000; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-primary:disabled { background: #555; color: #888; cursor: not-allowed; }
.btn-secondary { background: transparent; border: 1px solid var(--gold); color: var(--gold); }
.btn-secondary:hover { background: rgba(240,192,64,.1); }
.btn-danger   { background: var(--danger); color: #fff; }
.btn-success  { background: var(--success); color: #fff; }
.btn-sm { padding: 6px 14px; font-size: 12px; width: auto; border-radius: 8px; }

/* ── Inputs ──────────────────────────────────────── */
.input-group { margin-bottom: 14px; }
.input-group label { display: block; font-size: 11px; letter-spacing: 1px; color: var(--gold); text-transform: uppercase; margin-bottom: 6px; }
.input-field {
  width: 100%; padding: 12px 14px; background: rgba(255,255,255,.05);
  border: 1px solid var(--card-border); border-radius: 10px;
  color: var(--text); font-size: 14px; outline: none; transition: border-color .2s;
}
.input-field:focus { border-color: var(--gold); }
.input-field::placeholder { color: var(--muted); }
select.input-field { cursor: pointer; }
textarea.input-field { resize: vertical; }

/* ── Hero ────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, rgba(240,192,64,.08), rgba(0,0,0,0) 60%);
  border: 1px solid var(--card-border); border-radius: var(--radius);
  padding: 24px 20px; margin-bottom: 20px; text-align: left;
}
.hero h1 { font-size: 28px; font-weight: 900; letter-spacing: 3px; color: var(--gold); }
.hero p  { color: var(--muted); font-size: 12px; letter-spacing: 2px; margin: 4px 0 16px; }
.hero-btns { display: flex; gap: 10px; }
.hero-btns .btn { width: auto; padding: 10px 24px; }

/* ── Section headers ─────────────────────────────── */
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.section-title {
  font-size: 13px; font-weight: 800; letter-spacing: 2px;
  color: var(--gold); text-transform: uppercase;
  border-left: 3px solid var(--gold); padding-left: 10px;
}
.section-badge { font-size: 11px; color: var(--muted); }
.live-dot { width: 7px; height: 7px; background: var(--success); border-radius: 50%; display: inline-block; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }

/* ── Game cards grid ─────────────────────────────── */
.games-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.game-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 16px 12px;
  cursor: pointer; transition: all .2s; position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.game-card:hover { border-color: var(--gold); transform: translateY(-2px); background: rgba(240,192,64,.06); }
.game-card-badge {
  position: absolute; top: 8px; right: 8px;
  background: var(--success); color: #fff; font-size: 9px; font-weight: 700;
  padding: 2px 7px; border-radius: 10px; letter-spacing: 1px;
}
.game-card-icon { font-size: 36px; margin-bottom: 8px; }
.game-card-name { font-size: 13px; font-weight: 700; color: var(--text); }
.game-card-min  { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ── Slots grid (3 cols) ─────────────────────────── */
.slots-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.slot-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 10px; padding: 12px 8px;
  cursor: pointer; transition: all .2s; text-align: center;
}
.slot-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.slot-card-icon { font-size: 24px; margin-bottom: 6px; }
.slot-card-name { font-size: 10px; font-weight: 600; color: var(--text); line-height: 1.3; }

/* ── Game page ───────────────────────────────────── */
.game-title { text-align: center; font-size: 20px; font-weight: 900; letter-spacing: 3px; color: var(--gold); margin-bottom: 12px; }

.phase-badge {
  display: inline-block; padding: 12px 20px; border-radius: 20px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
}
.phase-betting  { background: rgba(34,197,94,.2); color: var(--success); border: 1px solid var(--success); }
.phase-result   { background: rgba(239,68,68,.2);  color: var(--danger);  border: 1px solid var(--danger); }
.phase-spinning { background: rgba(245,158,11,.2); color: var(--warning); border: 1px solid var(--warning); }

.timer-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.timer-val { font-size: 28px; font-weight: 900; color: var(--gold); font-variant-numeric: tabular-nums; }
.timer-bar { width: 100%; height: 4px; background: rgba(255,255,255,.1); border-radius: 2px; overflow: hidden; margin-bottom: 14px; }
.timer-fill { height: 100%; background: var(--gold); transition: width .5s linear; }

.history-row{
    display:flex;
    flex-wrap:nowrap;
    gap:6px;
    overflow-x:auto;
    padding:6px 0;
    scrollbar-width:none;
}

.history-row::-webkit-scrollbar{
    display:none;
}

.history-item{
    min-width:50px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:8px;
    font-weight:700;
    font-size:14px;
    color:#fff;
    flex-shrink:0;
    border:1px solid rgba(255,255,255,.15);
}
.history-chip {
  padding: 3px 10px; border-radius: 12px; font-size: 11px; font-weight: 700;
  background: rgba(255,255,255,.08); color: var(--text);
  margin-bottom: 5px;
}

/* ── Wheel wrapper with pointer fixed at top ─────── */
.wheel-wrapper {
  position: relative; display: flex; flex-direction: column;
  align-items: center; margin: 5px 0;
}
.wheel-pointer-top {
    font-size: 30px;
    color: #c084fc;
    line-height: 0;
    margin-bottom: 0;
    z-index: 2;

    filter: drop-shadow(0 0 5px rgba(192,132,252,.9));
}

/* ── CrazyTime segment grid (4×2) ────────────────── */
.ct-seg-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin: 5px 0;
    padding: 0 20px;
    box-sizing: border-box;
}

.ct-bet-btn {
    padding: 12px 4px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid;
    cursor: pointer;
    transition: all .2s;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.ct-bet-btn:hover,
.ct-bet-btn.selected {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,.4);
    filter: brightness(1.2);
}

.ct-bet-btn small {
    display: block;
    font-size: 9px;
    opacity: .75;
}

/* ── Quick Bet grid (5×2) ────────────────────────── */
.quick-bet-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    margin: 5px 0;
    padding: 0 20px;
    box-sizing: border-box;
}

.qbet-chip {
    padding: 8px 3px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all .2s;
    background: var(--card);
    border: 1px solid var(--card-border);
    color: var(--text);
}

.qbet-chip:hover,
.qbet-chip.active {
    background: rgba(240,192,64,.18);
    border-color: var(--gold);
    color: var(--gold);
}

/* ── Wheel canvas ────────────────────────────────── */
#wheel-canvas { display: block; margin: 0 auto; }

/* ── Dice ────────────────────────────────────────── */
.dice-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; margin: 16px 0; }
.die {
  aspect-ratio: 1; background: var(--card); border: 2px solid var(--card-border);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 28px; transition: all .3s;
}
.die.rolling { animation: roll .15s infinite; }
@keyframes roll { 0%{transform:rotate(0)} 100%{transform:rotate(360deg)} }

/* ── Symbol buttons ──────────────────────────────── */
.symbol-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin: 12px 0; }
.symbol-btn {
  background: var(--card); border: 2px solid var(--card-border);
  border-radius: 12px; padding: 14px 8px; text-align: center;
  cursor: pointer; transition: all .2s; position: relative;
  display: flex; flex-direction: column; align-items: center;
}
.symbol-btn:hover, .symbol-btn.selected { border-color: var(--gold); background: rgba(240,192,64,.1); }
.symbol-btn .sym-icon { font-size: 24px; display: block; margin-bottom: 4px; }
.symbol-btn .sym-name { font-size: 11px; color: var(--text); font-weight: 600; }
.odds-badge { font-size: 10px; color: var(--gold); margin-top: 4px; font-weight: 700; }

/* ── Card display ────────────────────────────────── */
.cards-arena { display: flex; align-items: center; justify-content: space-around; margin: 16px 0; }
.card-side { text-align: center; flex: 1; }
.card-side-label { font-size: 14px; font-weight: 800; letter-spacing: 2px; margin-bottom: 10px; }
.card-side.winner { border: 2px solid var(--gold); border-radius: 12px; padding: 8px; }
.playing-card {
  width: 64px; height: 88px; background: #fff; color: #000;
  border-radius: 8px; display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 900; margin: 2px; box-shadow: 0 4px 12px rgba(0,0,0,.5);
}
.playing-card.red { color: #e53e3e; }
.playing-card.hidden { background: linear-gradient(135deg,#1a1a2e,#16213e); color: #fff; font-size: 18px; }
.tp-hand { display: flex; justify-content: center; gap: 3px; flex-wrap: nowrap; }
.vs-divider { font-size: 16px; font-weight: 900; color: var(--muted); padding: 0 8px; }
.winner-badge { font-size: 11px; color: var(--gold); margin-top: 6px; min-height: 18px; }

/* ── Teen Patti / Dragon Tiger bet grid ──────────── */
.tp-bet-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin: 12px 0; }

/* ── Result display ──────────────────────────────── */
.result-box {
  background: var(--card); border: 1px solid var(--gold);
  border-radius: var(--radius); padding: 14px; text-align: center; margin: 12px 0;
}
.result-label { font-size: 11px; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; margin-bottom: 4px; }
.result-value { font-size: 28px; font-weight: 900; color: #fff; }
.result-value.win  { color: var(--success); }
.result-value.lose { color: var(--danger); }
.bonus-info { font-size: 13px; color: var(--gold); }


/* ── Slot machine ────────────────────────────────── */
.slot-title { text-align: center; font-size: 26px; font-weight: 900; color: var(--gold); margin-bottom: 8px; }

/* 4×5 reel grid */
.reel-grid {
  background: rgba(0,0,0,.4); border: 2px solid var(--card-border);
  border-radius: var(--radius); padding: 5px; margin-bottom: 2px;
  display: flex; flex-direction: column; gap: 4px;
}
.reel-row  { display: flex; gap: 4px; justify-content: center; }
.reel-cell {
  width: 68px; height: 52px; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 30px;
  transition: all .3s;
}
.reel-cell.spinning { animation: spin-cell .1s infinite; }
.reel-cell.win-line { border-color: var(--gold); background: rgba(240,192,64,.15); box-shadow: 0 0 8px rgba(240,192,64,.4); }
@keyframes spin-cell { 0%{transform:translateY(-4px);opacity:.5} 100%{transform:translateY(4px);opacity:1} }

.slot-result-banner {
  text-align: center; padding: 10px; border-radius: var(--radius);
  font-size: 18px; font-weight: 900; letter-spacing: 2px; margin-bottom: 2px;
  display: none;
}
.slot-result-banner.big-win   { background:rgba(96,165,250,.1);color:#60a5fa;border:1px solid #60a5fa; }
.slot-result-banner.jackpot   { background:rgba(240,192,64,.2);color:var(--gold);border:2px solid var(--gold);animation:jackpot-flash .5s infinite; }
@keyframes jackpot-flash { 0%,100%{opacity:1} 50%{opacity:.6} }

/* Win lines display */
.win-lines-display {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 10px; padding: 8px 12px; margin-bottom: 5px;
  font-size: 11px; color: var(--muted);
}

/* Circular spin button */
.slot-action-row {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin: 12px 0;
}
.slot-spin-circle {
  width: 70px; height: 70px; border-radius: 50%;
  background: var(--gold); color: #000; border: none;
  cursor: pointer; transition: all .2s;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 0 20px rgba(240,192,64,.4), 0 4px 16px rgba(0,0,0,.5);
  font-weight: 900;
}
.slot-spin-circle:hover { transform: scale(1.08); box-shadow: 0 0 30px rgba(240,192,64,.6); }
.slot-spin-circle:disabled { background: #555; color: #888; cursor: not-allowed; box-shadow: none; }
.slot-spin-circle .spin-icon { font-size: 22px; line-height: 1; }
.slot-spin-circle .spin-label { font-size: 18px; letter-spacing: 2px; }
.slot-spin-circle.spinning { animation: spin-btn .6s infinite linear; background: var(--gold-dark); }
@keyframes spin-btn { from{transform:rotate(0)} to{transform:rotate(360deg)} }

/* ── Bet controls (legacy kept for compatibility) ── */
.bet-controls { margin: 12px 0; }
.bet-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.bet-chip {
  padding: 5px 12px; border-radius: 16px; font-size: 11px; font-weight: 700;
  background: var(--card); border: 1px solid var(--card-border); cursor: pointer; transition: all .2s;
}
.bet-chip:hover, .bet-chip.active { background: rgba(240,192,64,.15); border-color: var(--gold); color: var(--gold); }

/* ── Deposit / Withdraw ──────────────────────────── */
.upi-qr { background: #fff; border-radius: 12px; padding: 16px; text-align: center; margin-bottom: 16px; }
.qr-placeholder { width: 140px; height: 140px; margin: 0 auto 8px; display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; padding: 16px; }
.qr-block { background: #333; border-radius: 4px; }
.upi-id { font-size: 15px; font-weight: 700; color: #000; display: block; }
.copy-btn { background: #f0f0f0; border: none; border-radius: 8px; padding: 4px 12px; font-size: 12px; font-weight: 600; cursor: pointer; color: #333; margin-left: 8px; }
.copy-btn:hover { background: #e0e0e0; }

/* ── Tables ──────────────────────────────────────── */
.data-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.data-table th { color: var(--gold); text-transform: uppercase; font-size: 10px; letter-spacing: 1px; padding: 8px 6px; border-bottom: 1px solid var(--card-border); text-align: left; }
.data-table td { padding: 10px 6px; border-bottom: 1px solid rgba(255,255,255,.04); vertical-align: middle; }
.data-table tr:hover td { background: rgba(255,255,255,.02); }
.badge { display: inline-block; padding: 2px 8px; border-radius: 10px; font-size: 10px; font-weight: 700; }
.badge-pending  { background: rgba(245,158,11,.2); color: var(--warning); }
.badge-approved { background: rgba(34,197,94,.2);  color: var(--success); }
.badge-declined { background: rgba(239,68,68,.2);  color: var(--danger); }
.badge-completed{ background: rgba(34,197,94,.2);  color: var(--success); }
.badge-won      { background: rgba(34,197,94,.2);  color: var(--success); }
.badge-lost     { background: rgba(239,68,68,.2);  color: var(--danger); }

/* ── Admin tabs ──────────────────────────────────── */
.admin-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.admin-tab { padding: 7px 14px; border-radius: 20px; font-size: 11px; font-weight: 700; background: var(--card); border: 1px solid var(--card-border); cursor: pointer; color: var(--muted); transition: all .2s; }
.admin-tab.active { background: var(--gold); color: #000; border-color: var(--gold); }
.admin-panel { display: none; }
.admin-panel.active { display: block; }

.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.stat-card { background: var(--card); border: 1px solid var(--card-border); border-radius: 12px; padding: 14px; text-align: center; }
.stat-val { font-size: 20px; font-weight: 900; color: var(--gold); }
.stat-label { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ── CrazyTime old bet class (keep for compat) ───── */
.ct-bets { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin: 12px 0; }
.ct-bet-btn.c1x  { border-color: #ef4444; color: #ef4444; }
.ct-bet-btn.c2x  { border-color: #3b82f6; color: #3b82f6; }
.ct-bet-btn.c5x  { border-color: #22c55e; color: #22c55e; }
.ct-bet-btn.c10x { border-color: #8b5cf6; color: #8b5cf6; }
.ct-bet-btn.cbonus { border-color: var(--gold); color: var(--gold); }

/* ── Toast ───────────────────────────────────────── */
.toast-container { position: fixed; top: 70px; left: 50%; transform: translateX(-50%); z-index: 9999; width: 320px; display: flex; flex-direction: column; gap: 8px; pointer-events: none; }
.toast { background: rgba(20,20,20,.95); border-radius: 12px; padding: 12px 16px; font-size: 13px; font-weight: 600; backdrop-filter: blur(8px); border-left: 4px solid var(--gold); opacity: 0; transform: translateY(-10px); transition: all .3s; pointer-events: all; }
.toast.show { opacity: 1; transform: translateY(0); }
.toast.success { border-color: var(--success); }
.toast.error   { border-color: var(--danger); }
.toast.info    { border-color: var(--gold); }

/* ── Misc utilities ──────────────────────────────── */
.text-gold  { color: var(--gold); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.text-sm { font-size: 12px; }
.fw-bold { font-weight: 700; }
.mt8  { margin-top: 8px; }
.mt16 { margin-top: 16px; }
.mb8  { margin-bottom: 8px; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-gap { display: flex; gap: 10px; }
.divider { height: 1px; background: var(--card-border); margin: 16px 0; }

/* ── Scrollbar ───────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }

/* ── Page loader ──────────────────────────────────── */
#page-loader { position:fixed;inset:0;background:var(--bg);display:flex;align-items:center;justify-content:center;z-index:9999;font-size:32px;letter-spacing:4px;color:var(--gold);font-weight:900; }

/* ── Jackpot tier win overlay ─────────────────────── */
.jackpot-win-overlay {
  position: fixed; inset: 0; z-index: 9998;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.85); flex-direction: column; gap: 16px;
  animation: fadeInOverlay .3s ease;
}
.jackpot-win-overlay h2 { font-size: 36px; font-weight: 900; color: var(--gold); letter-spacing: 4px; text-shadow: 0 0 30px var(--gold); }
.jackpot-win-overlay p { font-size: 18px; color: #fff; }
@keyframes fadeInOverlay { from{opacity:0} to{opacity:1} }

body {
  background: radial-gradient(circle at top, #1b1f2a, #0a0c12);
  font-family: Arial;
  color: white;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  background: #111827;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  width: 320px;
}

.coin {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(45deg,#ff3b3b,#3b82ff);
  margin: auto;
  animation: spin 5s ease-out;
}

@keyframes spin {
  0% { transform: rotateY(0); }
  100% { transform: rotateY(1800deg); }
}

