@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@900&family=Orbitron:wght@700&display=swap');

body {
  margin:0;
  background:radial-gradient(circle at top, #1a1f3c, #020617);
  color:white;
  font-family:Arial, sans-serif;
}

.glow {
  text-align:center;
  padding:40px 20px;
  animation:pulse 3s infinite;
}

@keyframes pulse {
  0% { box-shadow:0 0 20px gold; }
  50% { box-shadow:0 0 40px #22c55e; }
  100% { box-shadow:0 0 20px gold; }
}

.title {
  font-size:70px;
}

.nova { font-family:'Cinzel', serif;color:#d7c500;font-size:60px; }
.alex { font-family:'Orbitron', sans-serif; color:#38bdf8; font-size: 30px; }

.games {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
  padding:40px;
}

.slot-card {
  animation:slotSpin .6s ease-in;
}

@keyframes slotSpin {
  from { transform:translateY(-50px) rotateX(90deg); opacity:0; }
  to { transform:none; opacity:1; }
}

.slot-card img {
  width:100%;
  height:200px;
  border-radius:18px;
  object-fit:cover;
  transition:.3s;
}

.slot-card img:hover {
  transform:scale(1.08);
  box-shadow:0 0 30px gold;
}

footer {
  text-align:center;
  padding:30px;
}

.payments img {
  height:40px;
  background:white;
  padding:6px;
  margin:8px;
  border-radius:8px;
}

.telegram-float {
  position:fixed;
  right:20px;
  bottom:20px;
  background:#229ED9;
  padding:16px 22px;
  color:white;
  border-radius:50px;
  text-decoration:none;
}
/* SWITCH CONTAINER */
.switch-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* HIDE DEFAULT CHECKBOX */
.switch input {
  display: none;
}

/* SWITCH BODY */
.switch {
  position: relative;
  width: 90px;
  height: 44px;
}

/* SLIDER BACKGROUND */
.slider {
  position: absolute;
  inset: 0;
  background-color: #1e293b;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.4s;
}

/* SLIDER CIRCLE */
.slider::before {
  content: "";
  position: absolute;
  height: 36px;
  width: 36px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  border-radius: 50%;
  transition: 0.4s;
}

/* PLAYER MODE (ON) */
.switch input:checked + .slider {
  background-color: #22c55e;
}

.switch input:checked + .slider::before {
  transform: translateX(46px);
}

/* LABELS */
.label {
  font-size: 22px;
  font-weight: bold;
}
.slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.mode-slider {
  -webkit-appearance: none;
  width: 120px;
  height: 8px;
  background: #1e293b;
  border-radius: 10px;
  outline: none;
  cursor: pointer;
}

/* slider thumb */
.mode-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  background: #22c55e;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 10px #22c55e;
}

.mode-slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  background: #22c55e;
  border-radius: 50%;
  cursor: pointer;
}
.payment-footer {
  padding: 70px 20px 80px;
  text-align: center;
}

.payment-title {
  font-size: 26px;          /* BIGGER title */
  letter-spacing: 2px;
  margin-bottom: 35px;
  font-weight: 600;
  color: #f1f5f9;
}

/* LOGO ROW */
.payment-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 55px;                /* MORE SPACE BETWEEN LOGOS */
}

/* LOGOS */
.payment-row img {
  height: 60px;             /* 🔥 BIGGER LOGOS */
  opacity: 0.9;
  transition: all 0.35s ease;
  filter: drop-shadow(0 0 12px rgba(34,197,94,0.35));
}

/* HOVER EFFECT */
.payment-row img:hover {
  transform: scale(1.15);
  opacity: 1;
  filter: drop-shadow(0 0 20px rgba(34,197,94,0.6));
}

/* =========================
   MOBILE SPACING FIX ONLY
========================= */
@media (max-width: 768px) {

  /* Reduce padding around games */
  .games {
    padding: 22px 16px;
    gap: 20px;
  }

  /* Slightly smaller cards for mobile */
  .slot-card img,
  .game-card img {
    height: 165px;
  }

  /* Payment section tighter */
  .payment-footer {
    padding: 40px 15px 50px;
  }

  .payment-title {
    font-size: 22px;
    margin-bottom: 22px;
  }

  .payment-row {
    gap: 26px;
    flex-wrap: wrap;
  }

  .payment-row img {
    height: 48px;
  }

  /* Header spacing */
.header {
  padding: 40px 20px 15px; /* reduce bottom space */
}


  .title {
    font-size: 44px;
  }
}

/* Extra small phones */
@media (max-width: 420px) {

  .slot-card img,
  .game-card img {
    height: 150px;
  }

  .payment-row img {
    height: 42px;
  }

  .title {
    font-size: 36px;
  }
}

.spin-section {
  text-align: center;
  padding: 20px 20px 50px;
  margin-top: 20px; /* pulls wheel closer to logo */
}

.spin-title {
  text-align: center;
  font-size: 35px;
  margin-top: 30px;
  margin-bottom: 20px;
}

.wheel-container {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.wheel {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: conic-gradient(
    #22c55e 0deg 72deg,     /* $1–$4 */
    #3b82f6 72deg 144deg,   /* $5–$8 */
    #eab308 144deg 216deg,  /* $9–$12 */
    #ef4444 216deg 288deg,  /* $13–$16 */
    #8b5cf6 288deg 360deg   /* $17–$20 */
  );
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(34,197,94,0.6);
  transition: transform 2.2s cubic-bezier(0.33, 1, 0.68, 1);
}

.wheel-text {
  font-weight: bold;
  font-size: 18px;
  text-shadow: 0 0 8px black;
}

.spin-result {
  font-size: 22px;
  margin-top: 20px;
  font-weight: bold;
}

.spin-instruction {
  margin-top: 12px;
  font-size: 16px;
  opacity: 0.9;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.site-logo {
  height: 500px;        /* 🔥 BIGGER on desktop */
  object-fit: contain;
}



.site-logo {
  mix-blend-mode: screen;
}

/* =========================
   MOBILE GAME GRID FIX (SAFE)
========================= */
@media (max-width: 600px) {
  .games {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 14px;
  }

  .game-card img,
  .slot-card img {
    height: 105px;
    border-radius: 12px;
  }
}
/* =========================
   GAME NAME LABEL (SAFE)
========================= */
.game-card,
.slot-card {
  text-align: center;
  text-decoration: none;
}

.game-name {
  display: block;
  margin-top: 4px;
  font-size: 25px;
  font-weight: 600;
  color: #facc15;
  letter-spacing: 0.4px;
  text-shadow: 0 0 6px rgba(250,204,21,0.6);
}

@media (max-width: 600px) {
  .game-name {
    font-size: 10px;
  }
}

/* =========================
   PLAYER / AGENT TABS
========================= */
.mode-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 20px 0 30px;
}

.mode-tab {
  padding: 12px 26px;
  border-radius: 999px;
  border: 2px solid #334155;
  background: #020617;
  color: #94a3b8;
  font-size: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.mode-tab:hover {
  color: #fff;
  border-color: #38bdf8;
}

/* ACTIVE (GLOW) */
.mode-tab.active {
  color: #fff;
  border-color: #22c55e;
  box-shadow:
    0 0 10px rgba(34,197,94,0.6),
    0 0 20px rgba(34,197,94,0.4);
  background: rgba(34,197,94,0.08);
}

/* Mobile tuning */
@media (max-width: 600px) {
  .mode-tab {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* =========================
   MOBILE HEADER SIZE FIX
========================= */
@media (max-width: 600px) {

  header.glow {
    padding: 14px 12px;      /* reduce header height */
  }

  header.glow .nova {
    font-size: 26px;         /* smaller title */
    line-height: 1.2;
  }

  header.glow {
  animation: none;
  box-shadow: 0 0 14px rgba(250, 204, 21, 0.7);
}

}

/* =========================
   MOBILE SPIN SECTION FIX
========================= */
@media (max-width: 600px) {

  .spin-section {
    padding: 14px 12px 30px;
  }

  .spin-title {
    font-size: 20px;      /* smaller heading */
    margin-bottom: 10px;
    line-height: 1.2;
  }

  /* Wheel size */
  .wheel {
    width: 130px;
    height: 130px;
  }

  .wheel-text {
    font-size: 16px;
  }

  /* Timer text */
  #spin-timer {
    font-size: 12px !important;
    margin-top: 6px;
  }

  /* Result text */
  .spin-result {
    font-size: 18px;
    margin-top: 12px;
  }

  /* Instruction text */
  .spin-instruction {
    font-size: 13px;
    margin-top: 10px;
    line-height: 1.4;
  }
}
