/* ========================================================================== 
   Poker Page Styles
   ========================================================================== */

/* Hero Section */
.poker-hero {
  position: relative;
  padding-top: var(--space-40);
  padding-bottom: var(--space-40);
}

.poker-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--space-24);
  align-items: center;
}

.poker-hero__content h1 {
  font-size: var(--font-size-4xl);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-12);
}

.poker-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  margin-top: var(--space-16);
}

.poker-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  margin-top: var(--space-16);
}

.poker-hero__meta-item {
  flex: 1;
  min-width: 250px;
}

.poker-hero__figure {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.poker-hero__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Products Grid */
.poker-products {
  gap: var(--space-24);
}

.poker-product {
  display: flex;
  flex-direction: column;
}

.poker-product__features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.poker-product__price {
  color: var(--color-primary);
  font-size: var(--font-size-lg);
  margin-top: var(--space-8);
}

/* Events Grid */
.poker-events {
  gap: var(--space-24);
}

.poker-event {
  display: flex;
  flex-direction: column;
}

.poker-event__badge {
  margin-bottom: var(--space-8);
}

.poker-event__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  padding: var(--space-12);
  background: var(--color-surface-muted);
  border-radius: var(--radius-lg);
  margin-top: var(--space-8);
}

.poker-event__detail strong {
  display: block;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.poker-event__detail p {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

/* Form Styles */
.form-group {
  margin-bottom: var(--space-12);
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: var(--space-4);
  font-weight: 600;
  color: var(--color-text);
}

.form-group input,
.form-group textarea {
  padding: var(--space-8);
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-family: inherit;
  transition: border-color var(--transition-base), background-color var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: var(--color-surface-muted);
}

.form-group textarea {
  resize: vertical;
}

/* Utility Classes */
.flex {
  display: flex;
}

.gap-8 {
  gap: var(--space-8);
}

.mt-4 {
  margin-top: var(--space-4);
}

.mt-8 {
  margin-top: var(--space-8);
}

.mt-16 {
  margin-top: var(--space-16);
}

.mt-24 {
  margin-top: var(--space-24);
}

.text-center {
  text-align: center;
}

.max-w-narrow {
  max-width: 600px;
}

.section-header {
  margin-bottom: var(--space-16);
}

.section-header h2 {
  font-size: var(--font-size-3xl);
  line-height: var(--line-height-tight);
}

.section-header p {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  margin-top: var(--space-8);
}

.badge--sm {
  font-size: var(--font-size-xs);
  padding: var(--space-2) var(--space-6);
}

.inline-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-base);
}

.inline-link:hover {
  color: var(--color-primary-strong);
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .poker-hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-16);
  }

  .poker-hero__content h1 {
    font-size: var(--font-size-3xl);
  }

  .poker-event__details {
    grid-template-columns: 1fr;
  }

  .poker-products,
  .poker-events {
    grid-template-columns: 1fr;
  }

  .poker-hero__actions {
    flex-direction: column;
  }

  .poker-hero__actions .button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .poker-hero {
    padding-top: var(--space-24);
    padding-bottom: var(--space-24);
  }

  .poker-hero__content h1 {
    font-size: var(--font-size-2xl);
  }

  .section-header h2 {
    font-size: var(--font-size-2xl);
  }
}
