/* ========================================
   POKERI ÍVENTI - Stílusok
   ======================================== */

/* Hero Section */
.poker-hero {
  padding-top: var(--space-32);
  padding-bottom: var(--space-32);
}

.poker-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.2fr);
  gap: var(--space-24);
  align-items: center;
}

.poker-hero__content h1 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-16);
  background: linear-gradient(135deg, #ff006e, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.poker-hero__lead {
  font-size: var(--font-size-lg);
  max-width: 40rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-16);
}

.poker-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  margin-bottom: var(--space-24);
}

.poker-hero__panel-title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-12);
}

.poker-hero__list {
  margin-bottom: var(--space-16);
  padding-left: var(--space-16);
}

.poker-hero__list li {
  margin-bottom: var(--space-8);
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.poker-hero__panel-actions {
  margin-top: var(--space-12);
}

/* Events Section */
.poker-events {
  padding-bottom: var(--space-40);
  padding-top: var(--space-32);
}

.poker-events__header {
  text-align: center;
  margin-bottom: var(--space-40);
}

.poker-events__header h2 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-12);
  background: linear-gradient(135deg, #ff006e, #ffd60a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.poker-events__subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  max-width: 50rem;
  margin: 0 auto;
}

.poker-events__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-24);
  margin-bottom: var(--space-32);
}

/* Event Card */
.event-card {
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-standard), box-shadow var(--transition-standard);
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(255, 0, 110, 0.1);
}

.event-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid var(--color-border);
}

.event-card__date {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  font-weight: 500;
}

.badge {
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge--tournament {
  background-color: rgba(255, 0, 110, 0.1);
  color: #ff006e;
}

.badge--cashgame {
  background-color: rgba(0, 212, 255, 0.1);
  color: #00d4ff;
}

.badge--workshop {
  background-color: rgba(255, 214, 10, 0.1);
  color: #ffd60a;
}

.badge--special {
  background-color: rgba(100, 200, 100, 0.1);
  color: #64c864;
}

.event-card__title {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: var(--space-8);
}

.event-card__description {
  color: var(--color-text-muted);
  margin-bottom: var(--space-12);
  font-size: var(--font-size-sm);
  line-height: 1.6;
  flex-grow: 1;
}

.event-card__meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
  padding: var(--space-12);
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
}

.event-meta {
  display: block;
  color: var(--color-text-muted);
}

.event-meta strong {
  color: var(--color-text);
  display: inline-block;
  min-width: 80px;
}

.event-card__footer {
  display: flex;
  gap: var(--space-12);
  margin-top: auto;
  align-items: center;
}

.event-card__footer .button {
  flex: 1;
}

.event-card__link {
  color: #00d4ff;
  text-decoration: none;
  font-size: var(--font-size-sm);
  font-weight: 500;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.event-card__link:hover {
  color: #ff006e;
}

.poker-events__cta {
  text-align: center;
  padding: var(--space-24);
  background: linear-gradient(135deg, rgba(255, 0, 110, 0.05), rgba(0, 212, 255, 0.05));
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.poker-events__cta p {
  margin-bottom: var(--space-12);
  color: var(--color-text-muted);
}

/* Event Types Section */
.event-types {
  padding: var(--space-40) 0;
  background: linear-gradient(135deg, rgba(255, 0, 110, 0.02), rgba(0, 212, 255, 0.02));
}

.event-types__header {
  text-align: center;
  margin-bottom: var(--space-40);
}

.event-types__header h2 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-12);
  background: linear-gradient(135deg, #ff006e, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.event-types__subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  max-width: 50rem;
  margin: 0 auto;
}

.event-types__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-24);
}

.type-card {
  padding: var(--space-24);
}

.type-card__title {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: var(--space-12);
}

.type-card__description {
  color: var(--color-text-muted);
  margin-bottom: var(--space-12);
  font-size: var(--font-size-sm);
  line-height: 1.6;
}

.type-card__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.type-card__list li {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  padding-left: var(--space-16);
  position: relative;
}

.type-card__list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00d4ff;
  font-weight: bold;
}

/* Registration Section */
.poker-registration {
  padding: var(--space-40) 0;
}

.poker-registration__header {
  text-align: center;
  margin-bottom: var(--space-40);
}

.poker-registration__header h2 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-12);
  background: linear-gradient(135deg, #ffd60a, #ff006e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.poker-registration__subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  max-width: 50rem;
  margin: 0 auto;
}

.registration-form {
  max-width: 500px;
  margin: 0 auto var(--space-32);
  padding: var(--space-24);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.form-group {
  margin-bottom: var(--space-16);
}

.form-group:last-of-type:not(.form-group--checkbox) {
  margin-bottom: var(--space-24);
}

.form-label {
  display: block;
  margin-bottom: var(--space-6);
  font-weight: 500;
  font-size: var(--font-size-sm);
  color: var(--color-text);
}

.form-control {
  width: 100%;
  padding: var(--space-8) var(--space-12);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background-color: var(--color-bg);
  color: var(--color-text);
  font-size: var(--font-size-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: #00d4ff;
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group--checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

.form-checkbox {
  margin-top: 2px;
  cursor: pointer;
}

.form-group--checkbox .form-label {
  margin-bottom: 0;
  font-size: var(--font-size-sm);
}

.form-group--checkbox a {
  color: #00d4ff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-fast);
}

.form-group--checkbox a:hover {
  border-bottom-color: #00d4ff;
}

.poker-registration__note {
  max-width: 500px;
  margin: 0 auto;
  padding: var(--space-20);
}

.poker-registration__note h3 {
  font-size: var(--font-size-md);
  margin-bottom: var(--space-12);
}

.poker-registration__note ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.poker-registration__note li {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  padding-left: var(--space-20);
  position: relative;
}

.poker-registration__note li:before {
  content: "•";
  position: absolute;
  left: var(--space-8);
  color: #ff006e;
  font-weight: bold;
  font-size: var(--font-size-lg);
}

/* Community Section */
.poker-community {
  padding: var(--space-40) 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.02), rgba(255, 0, 110, 0.02));
}

.poker-community__header {
  text-align: center;
  margin-bottom: var(--space-40);
}

.poker-community__header h2 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-12);
  background: linear-gradient(135deg, #00d4ff, #ffd60a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.poker-community__subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  max-width: 50rem;
  margin: 0 auto;
}

.poker-community__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-20);
}

.community-card {
  padding: var(--space-20);
  text-align: center;
  transition: transform var(--transition-standard);
}

.community-card:hover {
  transform: translateY(-2px);
}

.community-card h3 {
  font-size: var(--font-size-md);
  margin-bottom: var(--space-12);
}

.community-card p {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  line-height: 1.6;
}

/* Responsible Gaming Section */
.poker-responsible {
  padding: var(--space-40) 0;
  background: linear-gradient(135deg, rgba(255, 0, 110, 0.05), rgba(255, 214, 10, 0.05));
  border-top: 2px solid var(--color-border);
  border-bottom: 2px solid var(--color-border);
}

.poker-responsible__content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.poker-responsible__content h2 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-12);
  color: #ff006e;
}

.poker-responsible__content p {
  color: var(--color-text-muted);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-20);
  line-height: 1.8;
}

.poker-responsible__resources {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-12);
}

/* Responsive Design */
@media (max-width: 768px) {
  .poker-hero__inner {
    grid-template-columns: 1fr;
  }

  .poker-hero__content h1 {
    font-size: var(--font-size-xl);
  }

  .poker-hero__lead {
    font-size: var(--font-size-md);
  }

  .poker-events__grid {
    grid-template-columns: 1fr;
  }

  .event-card__footer {
    flex-direction: column;
  }

  .event-card__footer .button {
    width: 100%;
  }

  .event-types__grid {
    grid-template-columns: 1fr;
  }

  .registration-form {
    padding: var(--space-16);
  }

  .poker-community__grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .poker-responsible__resources {
    flex-direction: column;
  }

  .poker-responsible__resources .button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .poker-hero__content h1 {
    font-size: var(--font-size-lg);
  }

  .poker-events__header h2,
  .event-types__header h2,
  .poker-registration__header h2,
  .poker-community__header h2 {
    font-size: var(--font-size-xl);
  }

  .event-card__meta {
    padding: var(--space-8);
    gap: var(--space-4);
  }

  .event-meta strong {
    min-width: 70px;
  }

  .poker-hero__actions {
    flex-direction: column;
  }

  .poker-hero__actions .button {
    width: 100%;
  }
}
