.hero-poker {
  position: relative;
  overflow: hidden;
}

.hero-poker__image-wrapper {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.65;
}

.hero-poker__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-cta-group {
  flex-wrap: wrap;
}

.hero-badge {
  font-weight: 500;
}

.hero-badge--top-left {
  top: 17%;
  left: 10%;
}

.hero-badge--top-right {
  top: 20%;
  right: 9%;
}

.hero-badge--bottom-left {
  bottom: 18%;
  left: 16%;
}

.hero-badge--bottom-right {
  bottom: 20%;
  right: 15%;
}

.poker-intro-grid {
  align-items: stretch;
}

.poker-intro-card {
  height: 100%;
}

.poker-image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color-gold);
  box-shadow: var(--shadow-soft);
}

.poker-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poker-atmosphere-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color-soft);
}

.poker-atmosphere-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poker-flow-grid,
.poker-system-grid,
.poker-hosts-grid,
.poker-groups-grid,
.poker-gallery-grid,
.poker-testimonials-grid {
  align-items: start;
}

.poker-gallery {
  position: relative;
}

.poker-reservation {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
  gap: var(--space-16);
  align-items: flex-start;
}

.poker-reservation__aside {
  padding: var(--space-10);
  border-radius: var(--radius-md);
  background-color: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--border-color-soft);
}

@media (max-width: 1024px) {
  .hero-badge--top-left {
    top: 14%;
    left: 6%;
  }

  .hero-badge--top-right {
    top: 16%;
    right: 6%;
  }

  .hero-badge--bottom-left {
    bottom: 16%;
    left: 10%;
  }

  .hero-badge--bottom-right {
    bottom: 18%;
    right: 10%;
  }
}

@media (max-width: 900px) {
  .poker-reservation {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-poker__image-wrapper {
    opacity: 0.55;
  }

  .hero-badge {
    display: none;
  }
}
