/* Poker Page Styles */

/* Hero Section */
.poker-hero {
  padding: var(--space-32) 0 var(--space-24);
}

.poker-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: var(--space-16);
  align-items: center;
}

.poker-hero__content p {
  max-width: 40rem;
}

.poker-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  margin-top: var(--space-8);
  margin-bottom: var(--space-6);
}

.poker-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.poker-hero__image-wrapper {
  position: relative;
}

.poker-hero__image {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

/* Breadcrumb Navigation */
.breadcrumb {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.breadcrumb a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--color-primary);
}

.breadcrumb li::after {
  content: '/';
  margin-left: var(--space-4);
  color: var(--color-text-muted);
}

.breadcrumb li:last-child::after {
  content: '';
}

/* Categories Section */
.poker-categories {
  padding: var(--space-32) 0;
}

.poker-categories__grid {
  margin-top: var(--space-16);
}

/* Category Cards */
.poker-category-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.poker-category-card .card__header {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: var(--space-8);
  margin-bottom: var(--space-8);
}

.poker-category-card .card__title {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: var(--space-4);
}

.poker-category-card .card__description {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.poker-category-card .card__body {
  flex: 1;
  padding-bottom: var(--space-8);
}

/* Feature List */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding: var(--space-3) 0;
  padding-left: var(--space-6);
  position: relative;
  font-size: var(--font-size-sm);
  color: var(--color-text);
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: bold;
}

/* Products Section */
.poker-products {
  padding: var(--space-32) 0;
}

.poker-products .featured {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: var(--space-16);
  align-items: center;
  margin-top: var(--space-16);
}

.poker-products .featured__visual {
  margin: 0;
}

.poker-products .featured__visual img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

/* Featured Content */
.featured__badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.featured__title {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  margin-bottom: var(--space-8);
  line-height: 1.2;
}

.featured__content p {
  margin-bottom: var(--space-8);
  line-height: 1.6;
  color: var(--color-text-muted);
}

.featured__list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-12) 0;
}

.featured__list li {
  padding: var(--space-4) 0;
  padding-left: var(--space-6);
  position: relative;
  font-size: var(--font-size-sm);
}

.featured__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.featured__actions {
  margin-top: var(--space-12);
}

/* Events Section */
.poker-events {
  padding: var(--space-32) 0;
}

.poker-events__grid {
  margin-top: var(--space-16);
}

/* Event Cards */
.poker-event-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.poker-event-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.poker-event-card .card__header {
  position: relative;
  padding: var(--space-8);
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

.poker-event-card .card__badge {
  display: inline-block;
  background-color: #ef4444;
  color: white;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-xs);
  font-weight: 600;
  margin-bottom: var(--space-4);
}

.poker-event-card .card__title {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: white;
  margin: 0;
}

.poker-event-card .card__body {
  flex: 1;
  padding: var(--space-8);
}

.poker-event-card .card__body p {
  margin: 0 0 var(--space-3) 0;
  font-size: var(--font-size-sm);
  line-height: 1.5;
}

.poker-event-card .card__body strong {
  color: var(--color-primary);
}

.poker-event-description {
  margin-top: var(--space-4) !important;
  color: var(--color-text-muted) !important;
  font-style: italic;
}

/* Why Us Section */
.poker-why {
  padding: var(--space-32) 0;
  background: linear-gradient(180deg, rgba(31, 41, 55, 0.5) 0%, rgba(17, 24, 39, 0.5) 100%);
  border-radius: var(--radius-2xl);
}

.poker-benefits__grid {
  margin-top: var(--space-16);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-12);
}

.benefit-item {
  text-align: center;
  padding: var(--space-12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.benefit-item__icon {
  font-size: 2.5rem;
  color: #06b6d4;
  margin-bottom: var(--space-4);
}

.benefit-item__title {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: var(--space-4);
}

.benefit-item p {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}

/* CTA Section */
.poker-cta {
  padding: var(--space-32);
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  border-radius: var(--radius-2xl);
  text-align: center;
}

.poker-cta__inner {
  max-width: 600px;
  margin: 0 auto;
}

.poker-cta__inner h2 {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  margin-bottom: var(--space-6);
  color: white;
}

.poker-cta__inner > p {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-12);
  line-height: 1.6;
}

.poker-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .poker-hero__grid {
    grid-template-columns: 1fr;
  }

  .poker-hero__image-wrapper {
    order: -1;
  }

  .poker-products .featured {
    grid-template-columns: 1fr;
  }

  .poker-benefits__grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-8);
  }

  .benefit-item {
    padding: var(--space-8);
  }

  .poker-cta {
    padding: var(--space-20);
  }

  .poker-cta__inner h2 {
    font-size: var(--font-size-2xl);
  }

  .poker-cta__actions {
    flex-direction: column;
  }

  .poker-cta__actions .button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .poker-hero {
    padding: var(--space-20) 0 var(--space-16);
  }

  .poker-hero__content p {
    font-size: var(--font-size-sm);
  }

  .poker-hero__actions {
    flex-direction: column;
  }

  .poker-hero__actions .button {
    width: 100%;
  }

  .poker-categories__grid {
    grid-template-columns: 1fr;
  }

  .featured__title {
    font-size: var(--font-size-xl);
  }

  .poker-benefits__grid {
    grid-template-columns: 1fr;
  }

  .poker-cta {
    padding: var(--space-16);
  }

  .poker-cta__inner h2 {
    font-size: var(--font-size-xl);
  }
}

/* Grid utilities (if not already defined in base.css) */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-12);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-12);
}

@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}
