/* Gates of Olympus TR — postadairesi-inspired dark navy affiliate landing */
:root {
  --bg: #252d40;
  --bg-deep: #1a2130;
  --bg-card: #2d3649;
  --bg-elevated: #343e54;
  --text: #f3f5f9;
  --text-muted: #a8b0c4;
  --accent-a: #22c55e;
  --accent-b: #0ea5e9;
  --accent-c: #14b8a6;
  --gold: #f5c542;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --header-h: 64px;
  --font: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(26, 33, 48, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.logo-mark {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.logo span {
  color: var(--gold);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.25rem;
}

.nav-desktop a {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-desktop a:hover {
  color: var(--text);
}

.header-cta {
  display: none;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-card);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 1rem 1rem;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  padding: 0.75rem 0.5rem;
  color: var(--text-muted);
  border-radius: 8px;
}

.nav-mobile a:hover {
  background: var(--bg-card);
  color: var(--text);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s;
  text-align: center;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.btn-primary {
  background: linear-gradient(135deg, #22c55e 0%, #14b8a6 45%, #0ea5e9 100%);
  color: #061018;
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.28);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  padding: 2.75rem 0 2.25rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(14, 165, 233, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 50% at 15% 80%, rgba(34, 197, 94, 0.12), transparent 50%),
    linear-gradient(180deg, #1a2130 0%, #252d40 100%);
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(245, 197, 66, 0.12);
  border: 1px solid rgba(245, 197, 66, 0.35);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.65rem);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0 0 1.5rem;
  max-width: 36rem;
}

.offer-card {
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(14, 165, 233, 0.12));
  border: 1px solid rgba(34, 197, 94, 0.35);
  margin-bottom: 1.5rem;
}

.offer-card .offer-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.offer-card .offer-value {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--text);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

.hero-visual {
  position: relative;
  justify-self: center;
}

.hero-visual img {
  width: min(340px, 100%);
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.hero-glow {
  position: absolute;
  inset: -20% -10%;
  background: radial-gradient(circle, rgba(245, 197, 66, 0.25), transparent 65%);
  z-index: -1;
  pointer-events: none;
}

/* Slot grid — immediately under hero */
.slots-section {
  background: #252d40;
  padding: 2rem 0 2.75rem;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.slot-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
  border-radius: var(--radius);
  overflow: visible;
  transition: transform 0.18s ease;
}

.slot-card:hover {
  transform: translateY(-3px);
}

.slot-thumb-wrap {
  position: relative;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-deep);
  aspect-ratio: 1 / 1;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.slot-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drops-badge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.28rem 0.45rem 0.28rem 0.35rem;
  background: linear-gradient(135deg, #0b0d12 0%, #1c2433 100%);
  color: var(--gold);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom-right-radius: 10px;
  clip-path: polygon(0 0, 100% 0, 100% 72%, 88% 100%, 0 100%);
  line-height: 1.1;
}

.drops-badge .crown {
  font-size: 0.7rem;
  line-height: 1;
}

.slot-title {
  margin: 0.55rem 0 0;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  padding: 0 0.15rem;
}

/* Content sections */
.content-section {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}

.content-section:nth-child(even) {
  background: var(--bg-deep);
}

.content-section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  font-weight: 800;
}

.content-section h3 {
  margin: 1.5rem 0 0.65rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.content-section p,
.content-section li {
  color: var(--text-muted);
}

.content-section p {
  margin: 0 0 1rem;
}

.content-section ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.content-section li {
  margin-bottom: 0.45rem;
}

.prose-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  margin: 1.25rem 0;
}

.prose-card strong {
  color: var(--text);
}

.callout {
  border-left: 3px solid var(--accent-b);
  padding: 0.85rem 1rem;
  background: rgba(14, 165, 233, 0.08);
  border-radius: 0 10px 10px 0;
  margin: 1.25rem 0;
}

.callout.warn {
  border-left-color: var(--gold);
  background: rgba(245, 197, 66, 0.08);
}

/* Casino cards */
.casino-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.casino-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: grid;
  gap: 0.85rem;
  box-shadow: var(--shadow);
}

.casino-card h3 {
  margin: 0;
  font-size: 1.15rem;
}

.casino-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: var(--bg-elevated);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
}

.casino-offer {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.casino-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: transparent;
  border: none;
  color: var(--text);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-q .chev {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  transition: transform 0.2s;
}

.faq-item.open .faq-q .chev {
  transform: rotate(180deg);
}

.faq-a {
  display: none;
  padding: 0 1.15rem 1.1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item.open .faq-a {
  display: block;
}

/* Footer */
.site-footer {
  background: #121722;
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 2rem;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.footer-brand {
  font-weight: 800;
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer-links a:hover {
  color: var(--text);
}

.rg-box {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 0.65rem;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #e11d48;
  color: #e11d48;
  font-weight: 800;
  font-size: 0.8rem;
}

.disclosure {
  font-size: 0.8rem;
  opacity: 0.9;
}

/* Utilities */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (min-width: 768px) {
  .nav-desktop,
  .header-cta {
    display: flex;
  }

  .menu-toggle,
  .nav-mobile {
    display: none !important;
  }

  .hero {
    padding: 3.5rem 0 3rem;
  }

  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .slots-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.1rem;
  }

  .slot-title {
    font-size: 0.85rem;
  }

  .casino-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr;
  }
}

@media (min-width: 1024px) {
  .casino-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
