* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #1a1a2e;

  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;

  color: #fff;
}

.app {
  width: 390px;
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}

/* blurred background layer */
.app::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: none;
  background-size: cover;
  background-position: center;

  filter: blur(4px);
  transform: scale(1.06);

  z-index: 0;
}

/* keep ALL content above background */
.topbar,
.badge-strip,
.hero {
  position: relative;
  z-index: 2;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 8px 16px;
  width: 390px;
  height: 60px;

  position: relative;
  z-index: 2;

  background-color: #fff;
  background-size: cover;
  background-position: center;
  overflow: hidden;

  border-radius: none;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo img {
  height: 40px;
  width: auto;
}

.live-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid #8c8c8d;
  border-radius: 4px;
  padding: 5px 12px;
  font-family: "Orbitron", sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #000;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 5px;
}
.live-badge:hover {
  background: rgba(255, 61, 90, 0.2);
}

.live-dot {
  width: 7px;
  height: 7px;
  background: red;
  border-radius: 50%;
  animation: pulse-red 1.4s ease-in-out infinite;
  box-shadow: 0 0 6px var(--red);
}

@keyframes pulse-red {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.badge-strip {
  background: linear-gradient(135deg, #305fb8, #155fdd);
  border-top: 1px solid #ecd488;
  border-bottom: 1px solid #ecd488;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 8px 0;

  background-size: cover;
  background-position: center;
}

.badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
}

.badge-icon {
  font-size: 16px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
}

.jackpot-section {
  background: none;
  margin-top: 30px;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 22px 20px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.jackpot-section::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 120px;
  background: radial-gradient(
    ellipse,
    rgba(0, 229, 192, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.jackpot-label {
  font-family: "Orbitron", sans-serif;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 0.85;
}

.jackpot-amount {
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 10px;
}

.jackpot-sub {
  font-size: 12px;
  color: #c8cbcf;
  margin-bottom: 16px;
  font-weight: 500;
}

.jackpot-pills {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pill {
  background: var(--pill-bg);
  border: 1px solid #5e6875;
  border-radius: 4px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #c8cbcf;
  white-space: nowrap;
}

.pill .pill-icon {
  color: var(--muted);
}

/* ── SLOT ICONS ── */
.slot-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 18px 12px 0;
}

.offer-section {
  margin: 18px 12px 0;
  background: #1a2233;
  border: 1px solid #1e2a3a;
  border-radius: 12px;
  padding: 18px 18px 16px;
  position: relative;
}

.offer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.offer-tag {
  font-family: "Inter", sans-serif;
  font-size: 9px;
  letter-spacing: 1.5px;
  color: #c8cbcf;
  text-transform: uppercase;
}

.limited-badge {
  background: var(--gold-dim);
  border: 1px solid rgba(245, 200, 66, 0.4);
  color: rgba(238, 181, 11, 0.938);
  font-family: "Inter", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 4px;
}

.offer-amount {
  font-family: "Inter", sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.offer-amount sup {
  font-size: 22px;
  vertical-align: super;
  font-weight: 700;
  color: #fff;
}

.offer-desc {
  font-size: 13px;
  color: #c8cbcf;
  font-weight: 500;
  margin-top: 10px;
  line-height: 1.6;
}

.offer-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.offer-pill {
  background: none;
  border: 1px solid #5e6875;
  border-radius: 10px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  color: #c8cbcf;
  cursor: default;
}

.offer-buttons {
  margin-top: 5px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 15px;
}

/* PRIMARY BUTTON - RED VERSION */
.btn-primary {
  position: relative;
  overflow: hidden;
  text-decoration: none;

  background: linear-gradient(135deg, #3b82f6, #1e40af);
  border: none;
  padding: 14px;
  border-radius: 8px;
  color: white;
  font-weight: 700;
  cursor: pointer;

  transition: all 0.2s ease;
  align-items: center;
  text-align: center;
  font-size: 14px;
}

/* hover lift + glow */
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
}

/* click feedback */
.btn-primary:active {
  transform: scale(0.97);
}

/* shine */
.btn-primary::after {
  content: "";
  position: absolute;
  top: -100%;
  left: -50%;
  width: 200%;
  height: 300%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: rotate(25deg);
  animation: shineBtn 2.5s infinite;
}

@keyframes shineBtn {
  0% {
    transform: translateX(-100%) rotate(25deg);
  }
  100% {
    transform: translateX(100%) rotate(25deg);
  }
}

.section-title {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  padding: 20px 20px 10px;
}

.games-list {
  margin: 0 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.game-row {
  background: #1e2636;
  border: 1px solid #1e2a3a;
  border-radius: 12px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.game-row:hover {
  border-color: rgba(0, 229, 192, 0.25);
  background: var(--card2);
}

.game-img {
  width: 55px;
  height: 52px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.game-info {
  flex: 1;
  min-width: 0;
}

.game-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 6px;
}

.game-sub {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 1px;
}

.game-rtp {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
  flex-shrink: 0;
}

.age-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 30px 16px;
  background: #0d0d1a;
  border-bottom: 1px solid #1e1e30;
  margin-top: 20px;
}
.age-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #e74c3c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 900;
  color: #e74c3c;
  flex-shrink: 0;
}
.age-bar p {
  font-size: 9.5px;
  color: #b3b1b1;
  line-height: 1.5;
}
