/* 7k925k.casino — Sapphire palette */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --bg:       #070d1e;
  --card:     #0f1630;
  --card2:    #172244;
  --sapphire: #2563eb;
  --gold:     #eab308;
  --text:     #eff6ff;
  --muted:    #6494b8;
  --muted2:   #a8c4e8;
  --border:   #1a2e5a;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  line-height: 1.25;
}

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

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

/* LAYOUT */
.saph-container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.saph-section { padding: 64px 0; }
.saph-section--alt { background: var(--card); }
.saph-section--alt2 { background: var(--card2); }

/* NAV */
.saph-nav {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
}
.saph-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.saph-nav__logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text);
  letter-spacing: 0.04em;
}
.saph-nav__logo span { color: var(--gold); }
.saph-nav__links { display: flex; gap: 28px; align-items: center; }
.saph-nav__links a { color: var(--muted2); font-size: 0.95rem; font-weight: 500; transition: color .2s; }
.saph-nav__links a:hover { color: var(--text); }
.saph-nav__cta {
  background: var(--sapphire);
  color: var(--text) !important;
  padding: 8px 22px;
  border-radius: 6px;
  font-weight: 600;
  transition: background .2s;
}
.saph-nav__cta:hover { background: #1d4ed8 !important; color: var(--text) !important; }

/* HERO */
.saph-hero {
  background: linear-gradient(135deg, #070d1e 0%, #0c1633 50%, #0f1a3d 100%);
  padding: 80px 0 72px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.saph-hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.saph-hero h1 span { color: var(--gold); }
.saph-hero__sub {
  font-size: 1.15rem;
  color: var(--muted2);
  max-width: 680px;
  margin: 0 auto 36px;
  font-weight: 300;
}
.saph-hero__badges {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.saph-badge {
  background: var(--card2);
  border: 1px solid var(--border);
  color: var(--muted2);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.saph-badge--gold { border-color: var(--gold); color: var(--gold); }
.saph-badge--blue { border-color: var(--sapphire); color: #93c5fd; }

/* BUTTONS */
.saph-btn {
  display: inline-block;
  background: var(--sapphire);
  color: var(--text);
  padding: 14px 40px;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  transition: background .2s, transform .15s;
  cursor: pointer;
  border: none;
}
.saph-btn:hover { background: #1d4ed8; color: var(--text); transform: translateY(-2px); }
.saph-btn--lg { padding: 16px 52px; font-size: 1.15rem; }
.saph-btn--outline {
  background: transparent;
  border: 2px solid var(--sapphire);
  color: var(--sapphire);
}
.saph-btn--outline:hover { background: var(--sapphire); color: var(--text); }

/* WELCOME BONUS */
.saph-bonus {
  background: linear-gradient(135deg, var(--card) 0%, var(--card2) 100%);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  margin-bottom: 40px;
}
.saph-bonus__title {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.saph-bonus__amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
}
.saph-bonus__amount span { color: var(--gold); }
.saph-bonus__sub { color: var(--muted2); margin-top: 10px; font-size: 0.95rem; }

/* DEPOSIT STEPS */
.saph-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 32px 0;
}
.saph-step {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
}
.saph-step__num {
  width: 40px; height: 40px;
  background: var(--sapphire);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  margin: 0 auto 14px;
}
.saph-step h4 { font-size: 1rem; margin-bottom: 6px; color: var(--text); }
.saph-step p { font-size: 0.88rem; color: var(--muted2); line-height: 1.5; }

/* SECTION TITLES */
.saph-section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--text);
  margin-bottom: 12px;
}
.saph-section-title span { color: var(--gold); }
.saph-section-lead {
  color: var(--muted2);
  font-size: 1rem;
  max-width: 680px;
  margin-bottom: 36px;
  font-weight: 300;
}

/* CARDS GRID */
.saph-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.saph-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  transition: border-color .2s;
}
.saph-card:hover { border-color: var(--sapphire); }
.saph-card__icon {
  width: 48px; height: 48px;
  background: var(--card2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.saph-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--text); }
.saph-card p { font-size: 0.88rem; color: var(--muted2); line-height: 1.55; }

/* SLOTS TABLE */
.saph-table-wrap { overflow-x: auto; }
.saph-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.saph-table th {
  background: var(--card2);
  color: var(--muted2);
  text-align: left;
  padding: 12px 14px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}
.saph-table td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: middle;
}
.saph-table tr:hover td { background: var(--card2); }
.saph-table td:nth-child(3) { color: #93c5fd; font-weight: 600; }
.saph-table td:nth-child(4) { color: var(--gold); font-weight: 600; }

/* VIP */
.saph-vip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  margin: 28px 0;
}
.saph-vip-tier {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 14px;
  text-align: center;
}
.saph-vip-tier__name { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1rem; color: var(--text); margin-bottom: 6px; }
.saph-vip-tier__pct { font-size: 1.5rem; font-weight: 700; color: var(--sapphire); font-family: 'Cormorant Garamond', serif; }
.saph-vip-tier__label { font-size: 0.78rem; color: var(--muted); margin-top: 4px; }

/* PAYMENTS */
.saph-pay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.saph-pay-item {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 16px;
}
.saph-pay-item__name { font-family: 'Cormorant Garamond', serif; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.saph-pay-item__row { display: flex; justify-content: space-between; font-size: 0.82rem; color: var(--muted2); margin-top: 4px; }
.saph-pay-item__row span:last-child { color: var(--gold); }

/* LIVE SECTION */
.saph-live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.saph-live-card {
  background: var(--card2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--sapphire);
  border-radius: 8px;
  padding: 22px 18px;
}
.saph-live-card__title { font-family: 'Cormorant Garamond', serif; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.saph-live-card__provider { font-size: 0.8rem; color: var(--muted); margin-bottom: 10px; }
.saph-live-card__mult { font-size: 1.4rem; font-weight: 700; color: var(--gold); font-family: 'Cormorant Garamond', serif; }

/* TOURNAMENT */
.saph-tournament {
  background: linear-gradient(135deg, #0c1633, #172244);
  border: 1px solid var(--sapphire);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
}
.saph-tournament__name { font-size: 1.5rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.saph-tournament__prize { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--gold); font-family: 'Cormorant Garamond', serif; margin-bottom: 20px; }
.saph-tournament__places { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.saph-tournament__place { text-align: center; }
.saph-tournament__place-num { font-size: 0.8rem; color: var(--muted); }
.saph-tournament__place-sum { font-size: 1.15rem; font-weight: 700; color: var(--text); }

/* OFFICIAL HIGHLIGHT */
.saph-official-box {
  background: var(--card2);
  border: 1px solid var(--sapphire);
  border-radius: 10px;
  padding: 28px 24px;
  margin: 24px 0;
}
.saph-official-box h3 { color: var(--gold); margin-bottom: 12px; }
.saph-official-box p { color: var(--muted2); font-size: 0.92rem; line-height: 1.6; }

/* FAQ */
.saph-faq { margin-top: 28px; }
.saph-faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.saph-faq-item:last-child { border-bottom: none; }
.saph-faq-item h4 { font-size: 1rem; color: var(--text); margin-bottom: 8px; font-family: 'Cormorant Garamond', serif; font-weight: 600; }
.saph-faq-item p { font-size: 0.9rem; color: var(--muted2); line-height: 1.6; }

/* AUTHOR NOTE */
.saph-author-note {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 24px;
  font-size: 0.85rem;
  color: var(--muted);
  margin: 40px 0 0;
  line-height: 1.6;
}

/* FOOTER */
.saph-footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 48px 0 28px;
}
.saph-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.saph-footer__brand { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1.3rem; color: var(--text); margin-bottom: 12px; }
.saph-footer__brand span { color: var(--gold); }
.saph-footer__desc { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }
.saph-footer__col-title { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 0.95rem; color: var(--muted2); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.06em; }
.saph-footer__links { list-style: none; }
.saph-footer__links li { margin-bottom: 8px; }
.saph-footer__links a { font-size: 0.85rem; color: var(--muted); transition: color .2s; }
.saph-footer__links a:hover { color: var(--text); }
.saph-footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.7;
}
.saph-footer__legal { margin-top: 10px; font-size: 0.75rem; color: #2a4070; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .saph-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .saph-nav__links a:not(.saph-nav__cta) { display: none; }
  .saph-hero { padding: 52px 0 48px; }
  .saph-bonus { padding: 28px 20px; }
  .saph-tournament { padding: 28px 20px; }
}
@media (max-width: 480px) {
  .saph-section { padding: 44px 0; }
  .saph-btn--lg { padding: 13px 32px; font-size: 1rem; }
}
