/* ========================================================================== */
/* Poker Page Styles                                                          */
/* ========================================================================== */

/* Hero Section */
.poker-hero {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-surface-subtle) 100%);
}

.poker-hero__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.poker-hero__eyebrow {
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: var(--space-4);
}

.poker-hero__content h1 {
  font-size: var(--font-size-4xl);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-8);
  color: var(--color-text);
}

.poker-hero__text {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-muted);
  margin-bottom: var(--space-12);
}

.poker-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}

.poker-hero__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}

.poker-hero__highlight-item {
  padding: var(--space-6);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-subtle);
}

.poker-hero__highlight-item dt {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-2);
  font-size: var(--font-size-base);
}

.poker-hero__highlight-item dd {
  margin: 0;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.poker-hero__media {
  width: 100%;
  height: auto;
}

.poker-hero__image {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.08));
}

/* Products Grid */
.poker-products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-12);
  list-style: none;
  padding: 0;
  margin: 0;
}

.poker-product__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  background: var(--color-surface);
}

.poker-product__card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.poker-product__image {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--color-surface-subtle) 0%, var(--color-bg) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.poker-product__image svg {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.poker-product__card h3 {
  padding: var(--space-6) var(--space-6) var(--space-2) var(--space-6);
  font-size: var(--font-size-lg);
  line-height: var(--line-height-snug);
  color: var(--color-text);
  margin: 0;
}

.poker-product__card p {
  padding: 0 var(--space-6) var(--space-6);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-normal);
  flex-grow: 1;
}

.poker-product__price {
  display: flex;
  gap: var(--space-4);
  align-items: center;
  padding: var(--space-6);
  border-top: 1px solid var(--color-border-subtle);
  font-weight: 600;
  color: var(--color-primary);
}

.price {
  font-size: var(--font-size-xl);
}

.price-original {
  font-size: var(--font-size-sm);
  text-decoration: line-through;
  color: var(--color-text-muted);
  font-weight: 400;
}

.card-actions {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-6);
  border-top: 1px solid var(--color-border-subtle);
}

.card-actions .btn {
  flex: 1;
  font-size: var(--font-size-sm);
}

/* Events Section */
.poker-events__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-12);
  list-style: none;
  padding: 0;
  margin: 0;
}

.poker-event__card {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: var(--space-12);
  background: var(--color-surface);
  border: 2px solid var(--color-primary-soft);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
}

.poker-event__card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.poker-event__date {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
  padding: var(--space-4) var(--space-6);
  background: linear-gradient(135deg, var(--color-primary-soft), var(--color-bg));
  border-radius: var(--radius-md);
  width: fit-content;
}

.poker-event__day {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--color-primary-dark);
}

.poker-event__month {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.poker-event__card h3 {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-snug);
  margin: 0 0 var(--space-4) 0;
  color: var(--color-text);
}

.poker-event__description {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  line-height: var(--line-height-normal);
}

.poker-event__details {
  margin: var(--space-8) 0;
  padding: var(--space-6);
  background: var(--color-surface-subtle);
  border-radius: var(--radius-md);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-2) var(--space-6);
  font-size: var(--font-size-sm);
}

.poker-event__details dt {
  font-weight: 600;
  color: var(--color-text);
}

.poker-event__details dd {
  margin: 0;
  color: var(--color-text-muted);
}

.poker-event__card .btn {
  margin-top: auto;
}

/* CTA Section */
.poker-cta {
  text-align: center;
  padding: var(--space-12);
}

.poker-cta h2 {
  font-size: var(--font-size-4xl);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-6);
  color: var(--color-text);
}

.poker-cta p {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-12);
  line-height: var(--line-height-relaxed);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.poker-cta__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .poker-hero__layout {
    grid-template-columns: 1fr;
  }

  .poker-hero__content h1 {
    font-size: var(--font-size-3xl);
  }

  .poker-hero__highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .poker-hero {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }

  .poker-hero__content h1 {
    font-size: var(--font-size-2xl);
  }

  .poker-hero__text {
    font-size: var(--font-size-base);
  }

  .poker-hero__actions {
    flex-direction: column;
  }

  .poker-hero__actions .btn {
    width: 100%;
  }

  .poker-products__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .poker-events__grid {
    grid-template-columns: 1fr;
  }

  .poker-cta h2 {
    font-size: var(--font-size-2xl);
  }

  .poker-cta p {
    font-size: var(--font-size-base);
  }

  .poker-cta__actions {
    gap: var(--space-4);
  }

  .poker-cta__actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .poker-hero__content h1 {
    font-size: var(--font-size-xl);
  }

  .poker-hero__highlights {
    grid-template-columns: 1fr;
  }

  .poker-hero__highlight-item {
    padding: var(--space-4);
  }

  .poker-product__card h3 {
    font-size: var(--font-size-base);
  }

  .poker-event__date {
    margin-bottom: var(--space-6);
  }

  .poker-event__card h3 {
    font-size: var(--font-size-base);
  }

  .poker-event__details {
    gap: var(--space-2) var(--space-4);
  }

  .poker-cta h2 {
    font-size: var(--font-size-xl);
  }
}
