body {
  color-scheme: dark;
}

.home-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.home-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.6) saturate(1.2);
  transform: scale(1.02);
}

.home-hero__content {
  position: relative;
  z-index: 1;
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.home-hero__text {
  max-width: 640px;
}

.home-hero__lead {
  font-size: var(--font-size-lg);
}

.home-hero__actions {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.home-hero__meta {
  margin-top: var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.home-section {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.home-section--poker,
.home-section--bar,
.home-section--relax,
.home-section--trust,
.home-section--testimonials,
.home-section--faq,
.home-section--contact {
  background-color: rgba(5, 6, 18, 0.7);
}

.home-section:nth-of-type(even) {
  background-color: var(--color-bg-elevated);
}

.home-section__split {
  align-items: center;
  gap: var(--space-10);
}

.home-section__split--image-right {
  align-items: center;
}

.home-section__text > p {
  font-size: var(--font-size-base);
}

.home-section__ctas {
  margin-top: var(--space-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.home-section__image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.home-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-section__header {
  margin-bottom: var(--space-8);
}

.home-section__header p {
  margin-left: auto;
  margin-right: auto;
}

.home-section__value {
  background: radial-gradient(circle at top left, rgba(255, 41, 102, 0.16), transparent 55%), var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
}

.home-section__value h3 {
  margin-bottom: var(--space-3);
}

.home-value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-4);
  margin-bottom: var(--space-4);
}

.home-value-cta {
  margin-top: var(--space-2);
}

.home-list {
  list-style: none;
  margin-top: var(--space-3);
}

.home-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: var(--space-2);
  font-size: var(--font-size-sm);
}

.home-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: radial-gradient(circle, var(--color-primary) 0, var(--color-success) 70%);
  box-shadow: var(--shadow-glow-primary);
}

.home-list--columns {
  columns: 2;
  column-gap: var(--space-10);
}

.home-highlight-card {
  height: 100%;
}

.home-events-grid {
  margin-top: var(--space-4);
}

.home-event-card .card-body p {
  font-size: var(--font-size-sm);
}

.home-card-link {
  display: inline-flex;
  margin-top: var(--space-3);
  font-size: var(--font-size-sm);
}

.home-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-6);
}

.home-trust-block {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
}

.home-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

.home-testimonial blockquote {
  font-size: var(--font-size-sm);
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.home-testimonial figcaption {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.home-faq {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.home-faq-item {
  border-radius: var(--radius-md);
  background-color: var(--color-surface);
  padding: var(--space-3) var(--space-4);
}

.home-faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: var(--font-size-sm);
}

.home-faq-item summary::-webkit-details-marker {
  display: none;
}

.home-faq-item[open] {
  box-shadow: var(--shadow-md);
}

.home-faq-item p {
  margin-top: var(--space-2);
  font-size: var(--font-size-sm);
}

.home-contact-form {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
}

.home-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.home-form-footer {
  margin-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.home-form-note {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.home-contact-info p {
  margin-bottom: 0;
}

.home-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.home-bottom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  background: linear-gradient(135deg, rgba(255, 41, 102, 0.3), rgba(30, 215, 96, 0.18));
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
}

.home-bottom-cta p {
  margin-bottom: 0;
}

.home-bottom-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

@media (max-width: 1024px) {
  .home-section {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }
}

@media (max-width: 768px) {
  .home-hero {
    min-height: 70vh;
  }

  .home-hero__content {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }

  .home-section__split {
    gap: var(--space-6);
  }

  .home-value-grid,
  .home-trust-grid,
  .home-testimonials-grid,
  .home-form-row {
    grid-template-columns: 1fr;
  }

  .home-list--columns {
    columns: 1;
  }

  .home-contact-form {
    padding: var(--space-4);
  }

  .home-bottom-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .home-hero__actions,
  .home-section__ctas,
  .home-bottom-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
