:root {
  --bg-deep: #07070f;
  --bg-mid: #0f1224;
  --bg-soft: #151a33;
  --gold: #d6b45c;
  --gold-strong: #f4cf7a;
  --accent: #57d1c9;
  --text: #eef1fb;
  --muted: #a6abc4;
  --card: #14182f;
  --line: #2a304d;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Manrope", sans-serif;
  background: var(--bg-deep);
  color: var(--text);
  padding-top: 76px;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .brand-text {
  font-family: "Cinzel", serif;
  letter-spacing: 0.6px;
}

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

.site-header {
  background: rgba(7, 7, 15, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.navbar .nav-link {
  color: var(--text);
  opacity: 0.75;
  font-weight: 600;
}

.navbar .nav-link:hover {
  opacity: 1;
  color: var(--gold-strong);
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.2);
}

.navbar-toggler-icon {
  filter: invert(1);
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  color: #1a1a1a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  color: #1b1a1a;
  border: none;
  font-weight: 700;
}

.btn-gold:hover {
  filter: brightness(1.05);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.35);
}

.hero {
  position: relative;
  padding: 120px 0 100px;
  background: radial-gradient(circle at 20% 20%, rgba(87, 209, 201, 0.15), transparent 50%),
    radial-gradient(circle at 80% 10%, rgba(214, 180, 92, 0.2), transparent 45%),
    linear-gradient(135deg, #0b0d1d, #0a0c1a);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: -40% 10% auto auto;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(214, 180, 92, 0.2), transparent 65%);
  filter: blur(10px);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: clamp(2.3rem, 3.2vw, 3.6rem);
}

.hero .lead {
  color: var(--muted);
  max-width: 620px;
}

.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.stat-value {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold-strong);
}

.stat-label {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-card {
  background: rgba(16, 19, 39, 0.95);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.hero-card i {
  color: var(--gold);
  font-size: 1.1rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.pill {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(87, 209, 201, 0.12);
  border: 1px solid rgba(87, 209, 201, 0.35);
  color: var(--accent);
  font-size: 0.85rem;
}

.section {
  padding: 86px 0;
}

.section-alt {
  background: var(--bg-mid);
}

.section-dark {
  background: #0b0e1e;
}

.section-visual {
  background: linear-gradient(135deg, #111638, #0a0c1a);
}

.about-parallax {
  position: relative;
  background: linear-gradient(rgba(7, 7, 15, 0.88), rgba(7, 7, 15, 0.88)),
    url("../img/about-bg.jpg") center/cover no-repeat fixed;
  overflow: hidden;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(214, 180, 92, 0.18), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(87, 209, 201, 0.16), transparent 50%);
  opacity: 0.9;
  pointer-events: none;
}

.about-parallax .container {
  position: relative;
  z-index: 2;
}

.about-parallax {
  position: relative;
  background: linear-gradient(rgba(7, 7, 15, 0.88), rgba(7, 7, 15, 0.88)),
    url("../img/hero.webp") center/cover no-repeat fixed;
  overflow: hidden;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(214, 180, 92, 0.18), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(87, 209, 201, 0.16), transparent 50%);
  opacity: 0.9;
  pointer-events: none;
}

.about-parallax .container {
  position: relative;
  z-index: 2;
}

.section-title {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.section-title p {
  color: var(--muted);
}

.section-title.light p,
.section-title.light h2 {
  color: var(--text);
}

.icon-card,
.feature-card,
.info-card,
.review-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  height: 100%;
}

.icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(214, 180, 92, 0.18);
  color: var(--gold);
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.feature-card h4,
.icon-card h5 {
  color: var(--gold-strong);
}

.badge.gold {
  background: rgba(214, 180, 92, 0.2);
  color: var(--gold-strong);
  border: 1px solid rgba(214, 180, 92, 0.4);
  padding: 8px 12px;
  border-radius: 30px;
}

.progress {
  background: #0b0e1f;
  height: 8px;
  border-radius: 8px;
}

.progress-bar {
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
}

.casino-card {
  background: linear-gradient(135deg, rgba(20, 24, 47, 0.96), rgba(14, 18, 37, 0.96));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  height: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.casino-media {
  position: relative;
  margin: -8px -8px 18px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(214, 180, 92, 0.25);
  background: #0a0d1c;
}

.casino-media img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  display: block;
  filter: saturate(1.05) contrast(1.05);
}

.casino-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(7, 7, 15, 0.8);
  border: 1px solid rgba(214, 180, 92, 0.5);
  color: var(--gold-strong);
  font-size: 0.8rem;
  font-weight: 600;
}

.casino-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.casino-head h3 {
  margin-bottom: 6px;
  color: var(--gold-strong);
}

.casino-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--text);
}

.casino-list i {
  color: var(--accent);
}

.rating {
  background: rgba(87, 209, 201, 0.15);
  border: 1px solid rgba(87, 209, 201, 0.4);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 12px;
  font-weight: 700;
}

.casino-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(214, 180, 92, 0.15);
  border: 1px solid rgba(214, 180, 92, 0.35);
  color: var(--gold-strong);
  font-size: 0.82rem;
}

.notice-card {
  background: linear-gradient(135deg, rgba(214, 180, 92, 0.2), rgba(15, 18, 36, 0.92));
  border: 1px solid rgba(214, 180, 92, 0.35);
  border-radius: 16px;
  padding: 26px;
  text-align: center;
}

.review-card {
  border-radius: 18px;
}

.review-head {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.review-head i {
  color: var(--gold-strong);
  font-size: 1.4rem;
}

.review-stars i {
  color: var(--gold);
}

.about-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.about-highlight {
  background: rgba(10, 12, 26, 0.78);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.about-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.about-highlight {
  background: rgba(10, 12, 26, 0.78);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.accordion-item {
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--text);
}

.accordion-button {
  background: var(--card);
  color: var(--text);
}

.accordion-button:not(.collapsed) {
  color: var(--gold-strong);
  background: rgba(214, 180, 92, 0.12);
}

.form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
}

.form-control {
  background: #0f1225;
  border: 1px solid var(--line);
  color: var(--text);
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem rgba(214, 180, 92, 0.2);
}

.responsible-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  color: var(--muted);
  font-weight: 600;
}

.responsible-logos span {
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.site-footer {
  background: #07070f;
  border-top: 1px solid var(--line);
  padding: 60px 0 30px;
}

.site-footer a {
  color: var(--muted);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.ft-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
}

.ft-org-link {
  display: inline-flex;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.ft-org-link:hover {
  transform: translateY(-2px);
  border-color: rgba(214, 180, 92, 0.4);
}

.ft-org-link img {
  display: block;
  height: 36px;
  width: auto;
  filter: grayscale(100%) brightness(0.9);
}

.muted {
  color: var(--muted);
}

@media (max-width: 992px) {
  .hero {
    padding: 110px 0 80px;
  }

  .casino-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    gap: 12px;
  }
}

@media (max-width: 576px) {
  .hero-stats {
    gap: 16px;
  }
}
