:root {
  --bg-1: #050505;
  --bg-2: #0a0a0a;
  --card: #1a1a1a;
  --card-2: #202020;
  --accent-red: #dc2626;
  --accent-gold: #ffd700;
  --accent-green: #16a34a;
  --text: #ffffff;
  --muted: #d4d4d8;
  --line: #2b2b2b;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  --radius: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 0%, rgba(220, 38, 38, 0.12), transparent 42%),
    radial-gradient(circle at 80% 30%, rgba(255, 215, 0, 0.07), transparent 44%),
    linear-gradient(180deg, var(--bg-1), var(--bg-2));
  line-height: 1.55;
}

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

a:hover {
  color: #ffe55a;
}

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

.container {
  width: min(var(--container), 92%);
  margin: 0 auto;
}

.section {
  padding: 70px 0;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 1.2rem + 2vw, 2.7rem);
  margin: 0 0 14px;
  color: #fff;
  letter-spacing: 0.3px;
}

.section-intro {
  color: var(--muted);
  max-width: 780px;
  margin: 0 0 30px;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  background: #111;
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  z-index: 999;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(0, 0, 0, 0.72);
  border-bottom: 1px solid rgba(220, 38, 38, 0.22);
  backdrop-filter: blur(8px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
}

.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--accent-gold);
  display: grid;
  place-items: center;
  position: relative;
  background: conic-gradient(
    var(--accent-red) 0deg 90deg,
    #111 90deg 180deg,
    var(--accent-red) 180deg 270deg,
    #111 270deg 360deg
  );
  box-shadow: inset 0 0 0 4px #111;
}

.brand-mark::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  border: 1px solid #05330f;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-top {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: var(--accent-gold);
}

.brand-bottom {
  font-size: 0.86rem;
  color: #fff;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  border-radius: 10px;
  width: 42px;
  height: 42px;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav a {
  color: #f5f5f5;
  font-weight: 600;
  letter-spacing: 0.4px;
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  padding: 78px 0 56px;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.34;
  pointer-events: none;
}

.hero::before {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.45), transparent 68%);
  top: -180px;
  left: -120px;
}

.hero::after {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.28), transparent 70%);
  right: -120px;
  bottom: -220px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
}

.hero h1 {
  margin: 0 0 14px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 1.4rem + 2.6vw, 3.8rem);
  line-height: 1.08;
  color: #fff;
  text-shadow: 0 0 24px rgba(220, 38, 38, 0.4);
}

.hero h1 .gold {
  color: var(--accent-gold);
}

.hero p {
  margin: 0 0 18px;
  color: var(--muted);
  max-width: 680px;
  font-size: 1.1rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 26px;
}

.trust-pill {
  border: 1px solid rgba(220, 38, 38, 0.4);
  background: rgba(220, 38, 38, 0.12);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  color: #fff;
}

.btn {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(90deg, #b91c1c, var(--accent-red));
  color: #fff;
  box-shadow: 0 12px 26px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px) rotate(-0.2deg);
  box-shadow: 0 14px 30px rgba(220, 38, 38, 0.45);
  animation: spinPulse 0.42s linear 1;
}

@keyframes spinPulse {
  0% {
    transform: translateY(-2px) rotate(0deg) scale(1);
  }
  50% {
    transform: translateY(-2px) rotate(1.8deg) scale(1.03);
  }
  100% {
    transform: translateY(-2px) rotate(0deg) scale(1);
  }
}

.hero-wheel {
  justify-self: center;
  width: min(360px, 90%);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 5px solid var(--accent-gold);
  background: conic-gradient(
    from -20deg,
    #111 0deg 12deg,
    var(--accent-red) 12deg 24deg,
    #111 24deg 36deg,
    var(--accent-red) 36deg 48deg,
    #111 48deg 60deg,
    var(--accent-red) 60deg 72deg,
    #111 72deg 84deg,
    var(--accent-red) 84deg 96deg,
    #111 96deg 108deg,
    var(--accent-green) 108deg 120deg,
    #111 120deg 132deg,
    var(--accent-red) 132deg 144deg,
    #111 144deg 156deg,
    var(--accent-red) 156deg 168deg,
    #111 168deg 180deg,
    var(--accent-red) 180deg 192deg,
    #111 192deg 204deg,
    var(--accent-red) 204deg 216deg,
    #111 216deg 228deg,
    var(--accent-red) 228deg 240deg,
    #111 240deg 252deg,
    var(--accent-red) 252deg 264deg,
    #111 264deg 276deg,
    var(--accent-red) 276deg 288deg,
    #111 288deg 300deg,
    var(--accent-red) 300deg 312deg,
    #111 312deg 324deg,
    var(--accent-red) 324deg 336deg,
    #111 336deg 348deg,
    var(--accent-red) 348deg 360deg
  );
  position: relative;
  box-shadow: var(--shadow);
  animation: wheelSpin 16s linear infinite;
}

.hero-wheel::before {
  content: "";
  position: absolute;
  inset: 17%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #2c2c2c, #0e0e0e 60%, #080808);
  border: 2px solid rgba(255, 215, 0, 0.55);
}

.hero-wheel::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 16px;
  margin-left: -8px;
  margin-top: -8px;
  border-radius: 50%;
  background: var(--accent-gold);
  box-shadow: 0 0 0 6px rgba(255, 215, 0, 0.16);
}

@keyframes wheelSpin {
  to {
    transform: rotate(360deg);
  }
}

.cards-grid {
  display: grid;
  gap: 18px;
}

.casino-card {
  background: linear-gradient(165deg, var(--card), var(--card-2));
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent-red);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  position: relative;
}

.casino-card:nth-child(even) {
  border-left-color: #0f0f0f;
}

.casino-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 215, 0, 0.06);
  pointer-events: none;
}

.casino-logo-container {
    width: 120px;
    height: 80px;
    min-width: 120px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 12px;
    background: #f3f4f6;
    overflow: hidden;
    flex-shrink: 0;
}
.casino-logo-container img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.dark-theme .casino-logo-container,
.casino-card .casino-logo-container {
  background: rgba(255, 255, 255, 0.08);
}

.card-main h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 1.65rem;
}

.rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0 12px;
  color: #fef08a;
  font-weight: 700;
}

.bonus-box {
  background: linear-gradient(90deg, rgba(220, 38, 38, 0.21), rgba(220, 38, 38, 0.1));
  border: 1px solid rgba(220, 38, 38, 0.42);
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 11px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.pill {
  border: 1px solid rgba(255, 215, 0, 0.3);
  background: rgba(255, 215, 0, 0.09);
  color: #fff;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.86rem;
  font-weight: 700;
}

.key-info,
.review-date,
.terms-note {
  color: #d4d4d8;
  font-size: 0.95rem;
  margin: 5px 0;
}

.card-side {
  min-width: 180px;
  display: grid;
  gap: 12px;
  justify-items: end;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 215, 0, 0.5);
  background: rgba(255, 215, 0, 0.14);
  color: #fff2ab;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
}

.card-side .btn {
  min-width: 170px;
}

.method-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.method-card,
.about-card,
.contact-card,
.legal-card {
  background: #151515;
  border: 1px solid #2c2c2c;
  border-radius: var(--radius);
  padding: 20px;
}

.method-card h3,
.about-card h3,
.contact-card h3,
.legal-card h3 {
  margin-top: 0;
  font-family: "Playfair Display", serif;
  color: var(--accent-gold);
}

.long-text {
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: var(--radius);
  padding: 24px;
}

.long-text p {
  margin: 0 0 14px;
  color: #ebebeb;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid #2c2c2c;
  border-radius: 14px;
  overflow: hidden;
  background: #141414;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 15px 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span:last-child {
  color: var(--accent-gold);
  font-size: 1.2rem;
}

.faq-answer {
  display: none;
  padding: 0 16px 16px;
  color: #d4d4d8;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question span:last-child {
  transform: rotate(45deg);
}

.responsible {
  border: 1px solid rgba(220, 38, 38, 0.4);
  background: linear-gradient(180deg, #120909, #0f0f0f);
  border-radius: var(--radius);
  padding: 24px;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 72px;
  border-radius: 16px;
  background: linear-gradient(130deg, #b91c1c, #ef4444);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 800;
  border: 2px solid var(--accent-gold);
  margin-bottom: 12px;
}

.links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0;
}

.link-chip {
  border: 1px solid rgba(255, 215, 0, 0.35);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 215, 0, 0.1);
}

.site-footer {
  margin-top: 42px;
  background: #090909;
  border-top: 1px solid #292929;
  padding: 42px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 20px;
}

.footer-col h4 {
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  color: var(--accent-gold);
}

.footer-nav,
.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-note {
  color: #cfcfcf;
  margin-top: 10px;
}

.copyright {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid #202020;
  color: #a1a1aa;
}

.page-hero {
  padding: 64px 0 36px;
}

.page-hero h1 {
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 1.2rem + 1.8vw, 3rem);
}

.legal-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 12px 0 0;
}

.legal-nav a {
  border: 1px solid #383838;
  border-radius: 999px;
  padding: 6px 10px;
  color: #f0f0f0;
}

.legal-sections {
  display: grid;
  gap: 14px;
}

.legal-section {
  background: #131313;
  border: 1px solid #2d2d2d;
  border-radius: 14px;
  padding: 18px;
}

.legal-section h2 {
  margin: 0 0 8px;
  color: #fff;
  font-family: "Playfair Display", serif;
}

.contact-form {
  display: grid;
  gap: 10px;
}

.contact-form label {
  font-weight: 600;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #444;
  background: #111;
  color: #fff;
  padding: 10px 12px;
  font: inherit;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.banner,
.age-modal {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 120;
}

.banner {
  bottom: 0;
  background: #111;
  border-top: 2px solid var(--accent-red);
  padding: 14px;
  display: none;
}

.banner.show {
  display: block;
}

.banner-inner {
  width: min(1060px, 92%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.banner-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.btn-ghost {
  background: transparent;
  border: 1px solid #555;
  color: #fff;
}

.age-modal {
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(0, 0, 0, 0.8);
  padding: 16px;
}

.age-modal.show {
  display: grid;
}

.age-box {
  max-width: 560px;
  width: 100%;
  background: linear-gradient(180deg, #1a1010, #101010);
  border: 1px solid rgba(220, 38, 38, 0.5);
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
}

.age-box h2 {
  font-family: "Playfair Display", serif;
  margin: 0 0 8px;
}

.age-box p {
  color: #e4e4e7;
}

.age-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

@media (max-width: 980px) {
  .hero-grid,
  .footer-grid,
  .method-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-wheel {
    max-width: 280px;
  }

  .casino-card {
    grid-template-columns: auto 1fr;
  }

  .card-side {
    grid-column: 1 / -1;
    justify-items: start;
  }

  .card-side .btn {
    min-width: 220px;
  }
}

@media (max-width: 800px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: #0b0b0b;
    border-bottom: 1px solid #2b2b2b;
    display: none;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 4%;
    gap: 2px;
  }

  .main-nav a {
    display: block;
    width: 100%;
    padding: 11px 0;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 56px 0;
  }

  .header-row {
    min-height: 68px;
  }

  .brand-top {
    font-size: 1rem;
  }

  .brand-bottom {
    font-size: 0.75rem;
  }

  .hero {
    padding-top: 58px;
  }

  .casino-card {
    padding: 14px;
    gap: 12px;
  }

  .casino-logo-container {
    width: 98px;
    min-width: 98px;
    height: 72px;
    min-height: 72px;
  }

  .bonus-box {
    font-size: 0.96rem;
  }

  .banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
