/* 7era Club — tema kasino gelap, mobile-first */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body,
h1,
h2,
h3,
p,
ul,
ol,
figure,
blockquote {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

:root {
  --bg: #0a0a0f;
  --card: #1a1a2e;
  --primary: #8b5cf6;
  --gold: #d4a843;
  --blue: #3b82f6;
  --red: #ef4444;
  --text: #e8e6df;
  --muted: #aaa59c;
  --border: #2a2a3e;
  --surface: #10101a;
  --primary-dark: #6d3fd6;
  --gold-dark: #aa8128;
  --radius: 16px;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
}

body {
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(139, 92, 246, 0.08), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--primary);
  color: #fff;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  background: var(--gold);
  color: #111;
  font-weight: 800;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(42, 42, 62, 0.9);
  background: rgba(10, 10, 15, 0.9);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

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

.logo {
  flex: 0 0 auto;
}

.logo img {
  width: auto;
  height: 40px;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
}

.primary-nav a {
  display: inline-flex;
  padding: 0.45rem 0.5rem;
  border-radius: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
}

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

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 3.5rem 0 4rem;
  background:
    radial-gradient(circle at 50% 18%, rgba(139, 92, 246, 0.34), transparent 20rem),
    radial-gradient(circle at 92% 72%, rgba(212, 168, 67, 0.14), transparent 18rem),
    linear-gradient(180deg, #10101d 0%, var(--bg) 100%);
}

.hero::after {
  position: absolute;
  inset: auto -20% -9rem;
  z-index: -1;
  height: 15rem;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.08);
  filter: blur(50px);
  content: "";
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.15rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.breadcrumb a {
  color: #c4b5fd;
}

.eyebrow {
  margin-bottom: 0.75rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.18;
  text-wrap: balance;
}

h1 {
  max-width: 19ch;
  font-size: clamp(2rem, 8vw, 3.9rem);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(1.7rem, 6vw, 2.65rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.12rem;
}

.hero-copy {
  max-width: 66ch;
  margin-top: 1.1rem;
  color: #cac7bf;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 10px;
  background: var(--primary);
  box-shadow: 0 10px 28px rgba(139, 92, 246, 0.28);
  color: #fff;
  font-weight: 900;
  line-height: 1.2;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.cta:hover {
  background: var(--primary-dark);
  box-shadow: 0 14px 34px rgba(139, 92, 246, 0.38);
  transform: translateY(-2px);
}

.cta.gold {
  background: var(--gold);
  box-shadow: 0 10px 28px rgba(212, 168, 67, 0.2);
  color: #17130a;
}

.cta.gold:hover {
  background: var(--gold-dark);
}

.hero-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.8rem;
}

section {
  padding: 4rem 0;
}

section:nth-child(even) {
  background: rgba(26, 26, 46, 0.18);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1.75rem;
}

.section-heading p:last-child {
  margin-top: 0.8rem;
  color: var(--muted);
}

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

.card {
  min-width: 0;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(31, 31, 53, 0.98), var(--card));
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.card p {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.91rem;
}

.card-icon {
  display: grid;
  width: 2.45rem;
  height: 2.45rem;
  margin-bottom: 0.85rem;
  place-items: center;
  border: 1px solid rgba(139, 92, 246, 0.38);
  border-radius: 11px;
  background: rgba(139, 92, 246, 0.12);
  font-size: 1.2rem;
}

.game-card {
  position: relative;
  overflow: hidden;
}

.game-card::before {
  position: absolute;
  top: 0;
  left: 1rem;
  width: 3.4rem;
  height: 2px;
  background: var(--primary);
  content: "";
}

.provider {
  display: inline-flex;
  margin-bottom: 0.7rem;
  padding: 0.25rem 0.55rem;
  border: 1px solid rgba(59, 130, 246, 0.32);
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.12);
  color: #93c5fd;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.9rem;
}

.tag {
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(10, 10, 15, 0.45);
  color: #c9c5bd;
  font-size: 0.7rem;
  font-weight: 700;
}

.promo-card {
  border-top: 2px solid var(--gold);
}

.promo-value {
  display: block;
  margin: 0.35rem 0 0.5rem;
  color: var(--gold);
  font-size: clamp(1.45rem, 5vw, 2rem);
  font-weight: 900;
}

.provider-card,
.tier-card,
.payment-card {
  text-align: center;
}

.tier-card.featured {
  border-color: rgba(212, 168, 67, 0.65);
  box-shadow: 0 14px 34px rgba(212, 168, 67, 0.1);
}

.tier-name {
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 900;
}

.rebate {
  display: block;
  margin-top: 0.4rem;
  font-size: 1.45rem;
  font-weight: 900;
}

.feature-panel {
  display: grid;
  gap: 1.2rem;
  padding: 1.5rem;
  border: 1px solid rgba(139, 92, 246, 0.45);
  border-radius: calc(var(--radius) + 4px);
  background:
    radial-gradient(circle at 90% 15%, rgba(139, 92, 246, 0.24), transparent 16rem),
    var(--card);
  box-shadow: var(--shadow);
}

.feature-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.feature-list li {
  display: flex;
  gap: 0.65rem;
  color: #cbc7bf;
}

.feature-list li::before {
  flex: 0 0 auto;
  color: var(--gold);
  font-weight: 900;
  content: "✓";
}

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

.trust .card:last-child {
  grid-column: 1 / -1;
}

.trust-number {
  display: block;
  margin-bottom: 0.35rem;
  color: #c4b5fd;
  font-size: 1.5rem;
  font-weight: 900;
}

.quote {
  position: relative;
  padding-top: 2.8rem;
}

.quote::before {
  position: absolute;
  top: 0.35rem;
  left: 1rem;
  color: rgba(212, 168, 67, 0.65);
  font-family: Georgia, serif;
  font-size: 3rem;
  line-height: 1;
  content: "“";
}

.quote footer {
  margin-top: 0.9rem;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

details {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
}

summary {
  position: relative;
  padding: 1rem 3rem 1rem 1rem;
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  top: 50%;
  right: 1rem;
  color: var(--gold);
  font-size: 1.25rem;
  line-height: 1;
  content: "+";
  transform: translateY(-50%);
}

details[open] summary {
  border-bottom: 1px solid var(--border);
  color: #d8ccff;
}

details[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 1rem;
  color: var(--muted);
}

.site-footer {
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--border);
  background: #07070b;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-brand img {
  width: auto;
  height: 40px;
}

.footer-brand p {
  max-width: 52ch;
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
}

.footer-nav a {
  color: #c8c4bb;
  font-size: 0.88rem;
  font-weight: 700;
}

.footer-nav a:hover {
  color: var(--gold);
}

.warning {
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px solid rgba(239, 68, 68, 0.35);
  border-radius: 10px;
  background: rgba(239, 68, 68, 0.08);
  color: #fecaca;
  font-size: 0.84rem;
}

.copyright {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  color: #77736c;
  font-size: 0.8rem;
}

@media (min-width: 768px) {
  .container {
    width: min(calc(100% - 3rem), 720px);
  }

  .header-inner {
    min-height: 76px;
  }

  .primary-nav ul {
    gap: 0.7rem;
  }

  .primary-nav a {
    padding: 0.55rem 0.8rem;
    font-size: 0.9rem;
  }

  .hero {
    padding: 5.5rem 0 6rem;
  }

  section {
    padding: 5.25rem 0;
  }

  .grid {
    gap: 1.1rem;
  }

  .card {
    padding: 1.3rem;
  }

  .feature-panel {
    grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.65fr);
    align-items: center;
    padding: 2.2rem;
  }

  .footer-top {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .footer-nav {
    max-width: 360px;
    justify-content: flex-end;
  }
}

@media (min-width: 1024px) {
  .container {
    width: min(calc(100% - 4rem), 1120px);
  }

  .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .games-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .providers-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .tiers-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .trust {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .trust .card:last-child {
    grid-column: auto;
  }

  .card {
    transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  }

  .card:hover {
    border-color: rgba(139, 92, 246, 0.55);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.26);
    transform: translateY(-3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
