/* ========================================================================== */
/* Poker Page Styles                                                          */
/* ========================================================================== */

/* Hero Section */
.poker-hero {
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-background) 100%);
  border-bottom: 2px solid var(--color-primary);
}

.poker-hero__layout {
  align-items: center;
  gap: var(--space-32);
}

.poker-hero__content h1 {
  font-size: var(--font-size-4xl);
  color: #ffd60a;
  font-weight: 700;
  margin-bottom: var(--space-16);
  line-height: var(--line-height-snug);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.poker-hero__lead {
  font-size: var(--font-size-lg);
  color: var(--color-text);
  margin-bottom: var(--space-20);
  line-height: var(--line-height-relaxed);
}

.poker-hero__highlights {
  margin-bottom: var(--space-24);
  padding: var(--space-16) 0;
}

.poker-hero__highlights ul {
  list-style: none;
  padding: 0;
}

.poker-hero__highlights li {
  padding: var(--space-10) 0;
  padding-left: var(--space-24);
  position: relative;
  color: var(--color-text-muted);
  font-size: var(--font-size-base);
  line-height: var(--line-height-snug);
}

.poker-hero__highlights li::before {
  content: "♠";
  position: absolute;
  left: 0;
  color: #ff006e;
  font-size: var(--font-size-xl);
  font-weight: bold;
}

.poker-hero__actions {
  display: flex;
  gap: var(--space-12);
  flex-wrap: wrap;
}

.poker-hero__image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(47, 127, 79, 0.3);
  border: 2px solid var(--color-primary);
}

.poker-hero__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Events Section */
.poker-events {
  background-color: var(--color-background);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-24);
  margin-top: var(--space-32);
}

.event-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(47, 127, 79, 0.4);
  border-color: var(--color-primary);
}

.event-card__badge {
  position: absolute;
  top: var(--space-12);
  right: var(--space-12);
  background: linear-gradient(135deg, #ff006e, #ffd60a);
  color: var(--color-background);
  padding: var(--space-6) var(--space-12);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--font-size-xs);
  z-index: 10;
}

.event-card__header {
  padding: var(--space-20);
  padding-bottom: var(--space-12);
}

.event-card__header h3 {
  font-size: var(--font-size-xl);
  color: #ffd60a;
  margin: 0 0 var(--space-10) 0;
  font-weight: 700;
}

.event-card__date {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.event-card__date i {
  color: var(--color-primary);
}

.event-card__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--bg-muted);
}

.event-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.event-card:hover .event-card__image img {
  transform: scale(1.05);
}

.event-card__body {
  padding: var(--space-20);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.event-card__body p {
  margin: 0;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-snug);
}

.event-card__body strong {
  color: var(--color-text);
}

.event-card__footer {
  padding: var(--space-20);
  padding-top: var(--space-12);
  margin-top: auto;
}

/* Products Section */
.poker-shop {
  background-color: var(--color-background);
}

.poker-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-24);
  margin-top: var(--space-32);
}

.poker-product-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.poker-product-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 10px 30px rgba(47, 127, 79, 0.25);
  transform: translateY(-4px);
}

.poker-product-card .card__header {
  padding: var(--space-16);
  background: linear-gradient(135deg, rgba(47, 127, 79, 0.2), rgba(255, 214, 10, 0.1));
  border-bottom: 1px solid var(--color-border-subtle);
}

.poker-product-card .card__header h3 {
  font-size: var(--font-size-lg);
  color: #ffd60a;
  margin: 0;
  font-weight: 700;
}

.poker-product-card__image {
  width: 100%;
  background: var(--bg-muted);
}

.poker-product-card .card__body {
  padding: var(--space-16);
  flex-grow: 1;
}

.poker-product-card .feature-list {
  list-style: none;
  padding: 0;
  margin-top: var(--space-12);
}

.poker-product-card .feature-list li {
  padding: var(--space-6) 0;
  padding-left: var(--space-20);
  position: relative;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.poker-product-card .feature-list li::before {
  content: "♦";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.poker-product-card .card__footer {
  padding: var(--space-16);
  border-top: 1px solid var(--color-border-subtle);
}

/* Featured Products */
.poker-featured {
  margin-top: var(--space-48);
  padding-top: var(--space-48);
  border-top: 2px solid var(--color-border-subtle);
}

.featured-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-24);
  margin-top: var(--space-32);
}

.featured-product {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--color-primary);
  transition: all var(--transition-normal);
  box-shadow: 0 8px 24px rgba(47, 127, 79, 0.2);
}

.featured-product:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(47, 127, 79, 0.4);
  border-color: #ffd60a;
}

.featured-product__image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: var(--bg-muted);
}

.featured-product__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.featured-product:hover .featured-product__image img {
  transform: scale(1.08);
}

.featured-product__body {
  padding: var(--space-20);
}

.featured-product__body h4 {
  font-size: var(--font-size-lg);
  color: var(--color-text);
  margin: 0 0 var(--space-12) 0;
  font-weight: 700;
}

.featured-product__price {
  display: flex;
  align-items: baseline;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

.price-label {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  font-weight: 500;
}

.price-value {
  font-size: var(--font-size-2xl);
  color: #ff006e;
  font-weight: 700;
}

.featured-product__body > p {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-16);
  line-height: var(--line-height-snug);
}

.featured-product__actions {
  display: flex;
  gap: var(--space-8);
}

.button--small {
  padding: var(--space-8) var(--space-12);
  font-size: var(--font-size-sm);
}

/* Community Section */
.poker-community {
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-background) 100%);
}

.community-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-32);
  margin-top: var(--space-40);
}

.community-feature {
  text-align: center;
  padding: var(--space-24);
  background: rgba(47, 127, 79, 0.1);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-subtle);
  transition: all var(--transition-normal);
}

.community-feature:hover {
  background: rgba(47, 127, 79, 0.15);
  transform: translateY(-4px);
  border-color: var(--color-primary);
}

.community-feature__icon {
  font-size: 2.5rem;
  color: #ffd60a;
  margin-bottom: var(--space-16);
}

.community-feature h3 {
  font-size: var(--font-size-xl);
  color: var(--color-text);
  margin: 0 0 var(--space-12) 0;
  font-weight: 700;
}

.community-feature p {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

/* CTA Section */
.poker-cta {
  background: linear-gradient(135deg, #2f7f4f 0%, #244e38 50%, #0b1410 100%);
  border-top: 3px solid #ffd60a;
  border-bottom: 3px solid #ff006e;
}

.poker-cta__inner {
  text-align: center;
  padding: var(--space-48) var(--space-16);
}

.poker-cta__content h2 {
  font-size: var(--font-size-4xl);
  color: #ffd60a;
  margin: 0 0 var(--space-16) 0;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.poker-cta__content p {
  font-size: var(--font-size-lg);
  color: var(--color-text);
  margin: 0 0 var(--space-24) 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.poker-cta__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-16);
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  .poker-hero__layout {
    grid-template-columns: 1fr;
    gap: var(--space-20);
  }

  .poker-hero__content h1 {
    font-size: var(--font-size-3xl);
  }

  .poker-category-grid,
  .events-grid,
  .featured-products-grid,
  .community-features {
    grid-template-columns: 1fr;
  }

  .poker-cta__actions {
    flex-direction: column;
  }

  .poker-cta__actions .button {
    width: 100%;
  }

  .featured-product__actions {
    flex-direction: column;
  }

  .featured-product__actions .button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .poker-hero__content h1 {
    font-size: var(--font-size-2xl);
  }

  .poker-hero__actions {
    flex-direction: column;
  }

  .poker-hero__actions .button {
    width: 100%;
  }

  .event-card__badge {
    top: var(--space-8);
    right: var(--space-8);
    font-size: var(--font-size-xs);
  }

  .price-value {
    font-size: var(--font-size-xl);
  }

  .poker-cta__content h2 {
    font-size: var(--font-size-2xl);
  }

  .poker-cta__content p {
    font-size: var(--font-size-base);
  }
}
