/* Poker Page Styles */

:root {
  --poker-hero-gradient: radial-gradient(circle at top left, rgba(31, 126, 214, 0.08), transparent 55%), radial-gradient(circle at bottom right, rgba(31, 126, 214, 0.06), transparent 60%);
}

/* Hero Section */
.poker-hero {
  background: var(--poker-hero-gradient);
}

.poker-hero__grid {
  display: grid;
  grid-template-columns: 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);
  color: var(--color-text);
}

.poker-hero__content p {
  font-size: var(--font-size-md);
  color: var(--color-text-muted);
  margin-bottom: var(--space-16);
  line-height: var(--line-height-relaxed);
}

.poker-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  margin-bottom: var(--space-24);
}

.poker-hero__highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-12);
}

.poker-hero__highlight-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.poker-hero__highlight-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: var(--space-4);
}

.poker-hero__highlight-item dt {
  font-weight: 600;
  font-size: var(--font-size-sm);
  color: var(--gray-800);
}

.poker-hero__highlight-item dd {
  margin: 0;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

/* Section Header */
.poker-section-header {
  margin-bottom: var(--space-32);
}

.poker-section-header h2 {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-12);
  color: var(--color-text);
}

.poker-section-header p {
  font-size: var(--font-size-md);
  color: var(--color-text-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Events Grid */
.poker-events__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-20);
}

/* Event Card */
.poker-event-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.poker-event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.poker-event-card__header {
  padding-bottom: var(--space-12);
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: var(--space-12);
  position: relative;
}

.poker-event-card__badge {
  display: inline-block;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  font-size: var(--font-size-xs);
  font-weight: 600;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.poker-event-card__header h3 {
  font-size: var(--font-size-lg);
  margin: 0;
  color: var(--color-text);
}

.poker-event-card__body {
  flex-grow: 1;
  margin-bottom: var(--space-16);
}

.poker-event-card__detail {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-10);
}

.poker-event-card__detail strong {
  font-weight: 600;
  color: var(--color-primary);
  font-size: var(--font-size-sm);
}

.poker-event-card__detail span {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.poker-event-card__description {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-normal);
  margin: var(--space-12) 0 0 0;
}

.poker-event-card__footer {
  border-top: 1px solid var(--gray-200);
  padding-top: var(--space-12);
  margin-top: var(--space-12);
}

/* Shop Section */
.poker-shop__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-20);
  margin-bottom: var(--space-40);
}

/* Product Card */
.poker-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.poker-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.poker-product-card__image {
  background: linear-gradient(135deg, var(--color-primary-soft) 0%, var(--gray-100) 100%);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-16);
}

.poker-product-placeholder {
  font-size: 4rem;
  line-height: 1;
}

.poker-product-card__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.poker-product-card__content h3 {
  font-size: var(--font-size-lg);
  margin: 0 0 var(--space-8) 0;
  color: var(--color-text);
}

.poker-product-card__description {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin: 0 0 var(--space-12) 0;
  line-height: var(--line-height-normal);
  flex-grow: 1;
}

.poker-product-card__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-bottom: var(--space-12);
  padding-top: var(--space-12);
  border-top: 1px solid var(--gray-200);
}

.poker-product-card__price {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-primary);
}

.poker-product-card__stock {
  font-size: var(--font-size-sm);
  color: var(--color-success);
  font-weight: 500;
}

.poker-product-card a {
  align-self: flex-start;
}

/* Shop Info */
.poker-shop__info {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.poker-shop__info h3 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-12);
  color: var(--color-text);
}

.poker-shop__info p {
  font-size: var(--font-size-md);
  color: var(--color-text-muted);
  margin-bottom: var(--space-16);
  line-height: var(--line-height-relaxed);
}

.poker-shop__info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  justify-content: center;
}

/* Why Choose Us Section */
.poker-why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-20);
}

.poker-why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-20);
}

.poker-why-item__icon {
  font-size: 3rem;
  margin-bottom: var(--space-12);
  display: block;
  line-height: 1;
}

.poker-why-item h3 {
  font-size: var(--font-size-lg);
  margin: 0 0 var(--space-8) 0;
  color: var(--color-text);
}

.poker-why-item p {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin: 0;
  line-height: var(--line-height-normal);
}

/* CTA Section */
.poker-cta__content {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.poker-cta__content h2 {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-12);
  color: var(--color-text);
}

.poker-cta__content p {
  font-size: var(--font-size-md);
  color: var(--color-text-muted);
  margin-bottom: var(--space-24);
  line-height: var(--line-height-relaxed);
}

.poker-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-12);
  justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .poker-hero__content h1 {
    font-size: var(--font-size-2xl);
  }

  .poker-hero__content p {
    font-size: var(--font-size-base);
  }

  .poker-hero__highlights {
    grid-template-columns: 1fr;
    gap: var(--space-16);
  }

  .poker-section-header h2 {
    font-size: var(--font-size-2xl);
  }

  .poker-events__grid,
  .poker-shop__grid {
    grid-template-columns: 1fr;
  }

  .poker-why__grid {
    grid-template-columns: 1fr;
  }

  .poker-cta__content h2 {
    font-size: var(--font-size-2xl);
  }

  .poker-cta__actions {
    flex-direction: column;
  }

  .poker-cta__actions .btn {
    width: 100%;
  }

  .poker-hero__actions {
    flex-direction: column;
  }

  .poker-hero__actions .btn {
    width: 100%;
  }

  .poker-shop__info-actions {
    flex-direction: column;
  }

  .poker-shop__info-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-icon {
    font-size: 1.5rem;
  }

  .poker-section-header h2 {
    font-size: var(--font-size-xl);
  }

  .poker-why-item {
    padding: var(--space-16);
  }

  .poker-why-item__icon {
    font-size: 2rem;
  }
}

/* Button Sizes */
.btn-sm {
  padding: var(--space-6) var(--space-12);
  font-size: var(--font-size-sm);
}

.btn-lg {
  padding: var(--space-12) var(--space-24);
  font-size: var(--font-size-md);
}

/* Text Utilities */
.text-center {
  text-align: center;
}
