/* Home page — mobile-first fixes & components */

.divider {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 20px);
  margin: clamp(32px, 6vw, 60px) 0;
}
.divider-line {
  flex: 1;
  min-width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192,132,252,0.5), transparent);
}
.divider-eye { flex-shrink: 0; }
.divider-eye svg { width: clamp(32px, 8vw, 48px); height: auto; }

.hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(32px, 6vw, 80px)) 0 clamp(32px, 5vw, 60px);
  text-align: center;
  overflow: hidden;
}

.hero-eye-bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(500px, 100vw);
  height: min(500px, 100vw);
  max-width: 100%;
  opacity: 0.06;
  pointer-events: none;
}

@keyframes glow-pulse {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(192,132,252,0.4)); }
  50% { filter: drop-shadow(0 0 14px rgba(192,132,252,0.85)); }
}

@keyframes pulse-eye {
  0%, 100% { opacity: 0.05; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: 0.1; transform: translate(-50%,-50%) scale(1.03); }
}
.hero-eye-bg { animation: pulse-eye 6s ease-in-out infinite; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 6px clamp(12px, 3vw, 20px);
  border: 1px solid rgba(245,200,66,0.4);
  border-radius: 2px;
  background: rgba(245,200,66,0.08);
  color: var(--gold-light);
  font-family: 'Cinzel', serif;
  font-size: clamp(0.6rem, 2.5vw, 0.8rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  max-width: 100%;
}

.hero h1 { margin-bottom: 12px; padding: 0 4px; }

.hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 4px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding: 0 4px;
}

.hero-banner,
.ux-banner,
.games-banner {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--mid-purple), var(--dark-navy2));
}

@media (max-width: 480px) {
  .hero-banner,
  .ux-banner,
  .games-banner {
    aspect-ratio: 3 / 2;
    max-height: min(52vw, 240px);
  }
}

.hero-banner {
  border: 1px solid rgba(192,132,252,0.3);
  box-shadow: 0 0 40px rgba(124,58,237,0.25);
}

.ux-banner {
  border: 1px solid rgba(192,132,252,0.25);
  box-shadow: 0 0 30px rgba(124,58,237,0.2);
}

.games-banner {
  border: 1px solid rgba(192,132,252,0.25);
  margin-bottom: clamp(24px, 5vw, 48px);
}

.hero-banner img,
.ux-banner img,
.games-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(192,132,252,0.2);
  border: 1px solid rgba(192,132,252,0.2);
  border-radius: 4px;
  overflow: hidden;
  margin: clamp(24px, 5vw, 48px) 0 0;
}

.stat-item { background: var(--card-bg); padding: clamp(14px, 3vw, 28px) 10px; text-align: center; }
.stat-number {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.2rem, 4vw, 2.4rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 4px;
  word-break: break-word;
}
.stat-label {
  font-size: clamp(0.6rem, 2vw, 0.8rem);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

section { padding: clamp(36px, 6vw, 100px) 0; }
section[id], #betalinger { scroll-margin-top: calc(var(--header-h) + 16px); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cinzel', serif;
  font-size: clamp(0.6rem, 1.2vw, 0.75rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-violet);
  margin-bottom: 12px;
  max-width: 100%;
}
.section-label::before, .section-label::after {
  content: '';
  width: clamp(12px, 4vw, 24px);
  height: 1px;
  background: var(--gold-violet);
  opacity: 0.6;
  flex-shrink: 0;
}

.section-title { margin-bottom: clamp(12px, 3vw, 28px); }

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4vw, 64px);
  align-items: start;
}

.quick-facts {
  background: var(--card-bg);
  border: 1px solid var(--border-glow);
  border-radius: 4px;
  overflow: hidden;
  min-width: 0;
  box-shadow: 0 0 40px rgba(124,58,237,0.15);
}

.intro-text p { margin-bottom: 14px; }

.quick-facts-title {
  padding: clamp(14px, 3vw, 20px) clamp(16px, 3vw, 28px);
  border-bottom: 1px solid rgba(192,132,252,0.2);
  font-family: 'Cinzel', serif;
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  font-weight: 700;
}

.facts-table { width: 100%; border-collapse: collapse; }
.facts-table tr { border-bottom: 1px solid rgba(192,132,252,0.1); }
.facts-table td {
  padding: 10px clamp(14px, 3vw, 28px);
  font-size: clamp(0.8rem, 1.4vw, 0.95rem);
  vertical-align: top;
}
.facts-table td:first-child {
  color: var(--text-muted);
  font-weight: 700;
  width: 42%;
}

@media (max-width: 560px) {
  .facts-table thead { display: none; }
  .facts-table tr {
    display: block;
    padding: 12px clamp(14px, 3vw, 20px);
    border-bottom: 1px solid rgba(192,132,252,0.15);
  }
  .facts-table td {
    display: block;
    width: 100% !important;
    padding: 4px 0;
    white-space: normal !important;
  }
  .facts-table td:first-child {
    color: var(--gold-violet);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .facts-table td:last-child { padding-bottom: 8px; color: var(--white); }
}

.reg-card {
  background: var(--card-bg);
  border: 1px solid var(--border-glow);
  border-radius: 4px;
  padding: clamp(20px, 4vw, 48px);
  overflow: hidden;
  box-shadow: 0 0 40px rgba(75,0,130,0.2);
  position: relative;
}

.login-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(12px, 2vw, 24px);
  margin-top: 24px;
}

.login-feature-card {
  background: rgba(26,0,51,0.6);
  border: 1px solid rgba(192,132,252,0.15);
  border-radius: 4px;
  padding: clamp(16px, 3vw, 28px);
  min-width: 0;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.login-feature-card:hover {
  border-color: rgba(192,132,252,0.4);
  box-shadow: 0 0 30px rgba(124,58,237,0.2);
}

.feature-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ux-features-list { list-style: none; }
.ux-features-list li {
  display: flex;
  gap: 12px;
  padding: clamp(12px, 2vw, 18px) 0;
  border-bottom: 1px solid rgba(192,132,252,0.1);
}
.ux-features-list li:last-child { border-bottom: none; }

.ux-feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-violet);
  flex-shrink: 0;
  margin-top: 8px;
}

.ux-feature-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.ux-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 2vw, 20px);
}

.bonus-card {
  background: var(--card-bg);
  border: 1px solid var(--border-glow);
  border-radius: 4px;
  padding: clamp(16px, 3vw, 28px) clamp(12px, 2vw, 20px);
  text-align: center;
  min-width: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.bonus-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-violet), transparent);
}
.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(124,58,237,0.3);
}

.bonus-req {
  font-size: clamp(0.7rem, 1.2vw, 0.8rem);
  color: var(--text-muted);
}

.bonus-type {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.75rem, 1.3vw, 1rem);
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.bonus-amount {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.9rem, 2vw, 1.25rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 8px;
  word-break: break-word;
  line-height: 1.3;
}

.bonus-card .btn {
  width: 100%;
  margin-top: 16px;
  font-size: clamp(0.65rem, 1.2vw, 0.85rem);
  padding-left: 12px;
  padding-right: 12px;
}

.games-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 2vw, 20px);
}

.game-cat-card {
  background: var(--card-bg);
  border: 1px solid var(--border-glow);
  border-radius: 4px;
  padding: clamp(18px, 3vw, 32px) 14px;
  min-width: 0;
  text-align: center;
  text-decoration: none;
  color: var(--white);
  display: block;
  transition: all 0.25s;
}
.game-cat-card:hover {
  background: rgba(75,0,130,0.6);
  transform: translateY(-4px);
}
.game-cat-icon { font-size: clamp(1.5rem, 4vw, 2.2rem); margin-bottom: 10px; display: block; }
.game-cat-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  font-weight: 700;
  margin-bottom: 6px;
}
.game-cat-desc { font-size: clamp(0.75rem, 1.2vw, 0.85rem); color: var(--text-muted); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4vw, 64px);
  align-items: start;
}

.info-card {
  min-width: 0;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border-glow);
  border-radius: 4px;
  backdrop-filter: blur(8px);
}

.info-card-header {
  padding: clamp(14px, 3vw, 20px) clamp(16px, 3vw, 28px);
  border-bottom: 1px solid rgba(192,132,252,0.15);
  background: linear-gradient(135deg, rgba(124,58,237,0.25), rgba(75,0,130,0.15));
}

.payments-table { width: 100%; min-width: 320px; border-collapse: collapse; }
.payments-table th,
.payments-table td {
  padding: 10px 12px;
  font-size: clamp(0.7rem, 1.3vw, 0.88rem);
}
.payments-table th {
  white-space: nowrap;
  text-align: left;
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-violet);
  border-bottom: 1px solid rgba(192,132,252,0.15);
}
.payments-table td { border-bottom: 1px solid rgba(192,132,252,0.07); color: #d1b8f0; }
.payments-table td:first-child { color: var(--white); font-weight: 700; }
.payments-table tr:last-child td { border-bottom: none; }
.payments-table tr:hover td { background: rgba(124,58,237,0.08); }

.tag-instant {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.3);
  color: #6ee7b7;
  border-radius: 2px;
  font-size: 0.7rem;
  font-weight: 700;
  white-space: nowrap;
}

.table-wrap--payments {
  margin: 0;
  border: none;
  background: transparent;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2.5vw, 28px);
}

.security-card {
  background: var(--card-bg);
  border: 1px solid var(--border-glow);
  border-radius: 4px;
  padding: clamp(20px, 3.5vw, 40px) clamp(16px, 2.5vw, 28px);
  min-width: 0;
}
.security-icon {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(124,58,237,0.4), rgba(75,0,130,0.3));
  border: 1px solid rgba(192,132,252,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.25rem;
}

.support-list { list-style: none; margin-top: 16px; }
.support-list li {
  display: flex;
  gap: 12px;
  padding: clamp(12px, 2vw, 18px) 0;
  border-bottom: 1px solid rgba(192,132,252,0.1);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: #d1b8f0;
}
.support-list .bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-violet);
  flex-shrink: 0;
  margin-top: 8px;
}

.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  border: 1px solid rgba(192,132,252,0.15);
  border-radius: 4px;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-q {
  padding: clamp(14px, 2.5vw, 22px) clamp(14px, 3vw, 28px);
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  gap: 12px;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(26,0,51,0.5);
  list-style: none;
}
.faq-q::after {
  content: '▾';
  color: var(--gold-violet);
  flex-shrink: 0;
}
details[open] .faq-q::after { transform: rotate(180deg); }
.faq-a {
  padding: 0 clamp(14px, 3vw, 28px) clamp(14px, 2.5vw, 22px);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  background: rgba(13,13,43,0.5);
}

.cta-band {
  position: relative;
  text-align: center;
  padding: clamp(40px, 7vw, 100px) clamp(12px, 3vw, 24px);
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124,58,237,0.2) 0%, rgba(75,0,130,0.35) 50%, rgba(26,0,51,0.2) 100%);
  border-top: 1px solid rgba(192,132,252,0.2);
  border-bottom: 1px solid rgba(192,132,252,0.2);
}
.cta-band-content { position: relative; z-index: 1; }
.cta-band h2 { margin-bottom: 12px; }
.cta-band p { margin-bottom: 28px; }

.cta-band-content .section-label {
  justify-content: center;
  width: 100%;
}

.cta-band-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 4px;
}

.cta-band-ctas .btn { flex: 1 1 140px; max-width: 100%; }

@media (max-width: 1024px) {
  .bonus-grid { grid-template-columns: repeat(2, 1fr); }
  .games-cats { grid-template-columns: repeat(2, 1fr); }
  .intro-grid, .ux-grid, .two-col { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .login-features { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .hero-eye-bg { display: none; }
  .divider { margin: 28px 0; }
}

@media (max-width: 480px) {
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .bonus-grid, .games-cats { grid-template-columns: 1fr; }
  .hero-ctas, .cta-band-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn, .cta-band-ctas .btn { width: 100%; }
  .section-label::before, .section-label::after { display: none; }
  .section-label { letter-spacing: 0.1em; }
}

@media (max-width: 360px) {
  .stats-bar { grid-template-columns: 1fr; }
}

@media (max-width: 320px) {
  .page-wrap { padding: 0 10px; }
  h1 { font-size: 1.45rem; }
}
