/* ═══════════════════════════════════════════════════
   Şans Oyunları Sayfa Stilleri
═══════════════════════════════════════════════════ */

/* ── Hero ── */
.so-hero {
  position: relative;
  padding: calc(var(--navbar-h) + 5rem) 0 5rem;
  text-align: center;
  overflow: hidden;
}
.so-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(10,132,255,.1), transparent),
    radial-gradient(ellipse 50% 50% at 80% 80%, rgba(123,47,190,.06), transparent),
    radial-gradient(ellipse 50% 50% at 20% 70%, rgba(52,211,153,.05), transparent);
  pointer-events: none;
}
.so-hero-inner { position: relative; z-index: 1; }

/* MPI brand strip */
.mpi-brand {
  display: inline-flex; align-items: center; gap: 1rem;
  padding: .875rem 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(0,48,135,.2);
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
}
.mpi-brand img { height: 36px; width: auto; object-fit: contain; filter: brightness(1.1); }
.mpi-brand-text { font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #93c5fd; }
.mpi-brand-divider { width: 1px; height: 24px; background: rgba(255,255,255,.2); }

/* ── Oyun Kartları ── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .games-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .games-grid { grid-template-columns: 1fr; } }

.game-card {
  display: flex; flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.025);
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.game-card:hover { transform: translateY(-6px); }

/* Logo banner */
.game-logo {
  width: 100%; height: 120px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  flex-shrink: 0;
}
.game-logo svg { position: relative; z-index: 1; }
.game-logo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,.25) 100%);
  z-index: 0;
}

/* Card body */
.game-body { padding: 1.25rem 1.25rem .75rem; flex: 1; }
.game-name { font-size: 1.0625rem; font-weight: 900; color: #fff; margin-bottom: .25rem; }
.game-format {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .2rem .65rem; border-radius: 999px;
  font-size: .7rem; font-weight: 800; letter-spacing: .05em;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.6);
  margin-bottom: .75rem;
}
.game-desc { font-size: .8125rem; color: #94a3b8; line-height: 1.65; }

/* Card meta */
.game-meta { padding: .75rem 1.25rem; display: flex; flex-wrap: wrap; gap: .5rem; }
.game-tag {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .25rem .6rem; border-radius: 8px;
  font-size: .7rem; font-weight: 700;
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.07);
}

/* Card footer */
.game-footer { padding: .875rem 1.25rem 1.25rem; }
.game-order-btn {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  width: 100%; padding: .65rem 1rem;
  border-radius: 12px;
  font-size: .82rem; font-weight: 800;
  border: none; cursor: pointer;
  transition: filter .2s, transform .2s;
  color: #fff;
}
.game-order-btn:hover { filter: brightness(1.15); transform: scale(1.02); }

/* Hover glow per game */
.gcard-sayisal:hover  { border-color: rgba(59,130,246,.3); box-shadow: 0 20px 60px -12px rgba(59,130,246,.2); }
.gcard-sanstopu:hover { border-color: rgba(249,115,22,.3); box-shadow: 0 20px 60px -12px rgba(249,115,22,.2); }
.gcard-onnumara:hover { border-color: rgba(34,197,94,.3);  box-shadow: 0 20px 60px -12px rgba(34,197,94,.2);  }
.gcard-superloto:hover{ border-color: rgba(168,85,247,.3); box-shadow: 0 20px 60px -12px rgba(168,85,247,.2); }
.gcard-piyango:hover  { border-color: rgba(251,191,36,.3); box-shadow: 0 20px 60px -12px rgba(251,191,36,.2); }
.gcard-kazik:hover    { border-color: rgba(244,63,94,.3);  box-shadow: 0 20px 60px -12px rgba(244,63,94,.2);  }

/* ── Çekiliş Takvimi ── */
.schedule-table { width: 100%; border-collapse: separate; border-spacing: 0; }
.schedule-table thead tr th {
  font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: var(--text-muted); padding: .75rem 1rem; border-bottom: 1px solid rgba(255,255,255,.07);
  text-align: left;
}
.schedule-table tbody tr { transition: background .15s; }
.schedule-table tbody tr:hover { background: rgba(255,255,255,.03); }
.schedule-table tbody tr td {
  padding: .875rem 1rem; font-size: .875rem;
  border-bottom: 1px solid rgba(255,255,255,.04);
  vertical-align: middle;
}
.schedule-table tbody tr:last-child td { border-bottom: none; }
.sched-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
  display: inline-block; margin-right: .5rem;
}
.sched-days { display: flex; flex-wrap: wrap; gap: .3rem; }
.sched-day {
  padding: .15rem .5rem; border-radius: 6px;
  font-size: .72rem; font-weight: 700;
  background: rgba(255,255,255,.07); color: rgba(255,255,255,.6);
}

/* ── Nasıl Sipariş section ── */
.how-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
@media(max-width:700px){ .how-grid { grid-template-columns: 1fr; } }
.how-card {
  padding: 1.5rem; border-radius: 16px;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.025);
  text-align: center;
}
.how-num {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 900; margin: 0 auto 1rem;
  color: #fff;
}

/* ── CTA strip ── */
.cta-strip {
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg,rgba(10,132,255,.1),rgba(123,47,190,.08));
  border: 1px solid rgba(10,132,255,.2);
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center,rgba(10,132,255,.07) 0%,transparent 70%);
}
.cta-strip > * { position: relative; z-index: 1; }
