* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #0066cc;
  --secondary-color: #004080;
  --accent-color: #00a86b;
  --text-dark: #1a1a1a;
  --text-light: #4a4a4a;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --success-color: #28a745;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 32px 0;
  box-shadow: var(--shadow-sm);
}

.logo-area {
  text-align: center;
}

.logo-area h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.tagline {
  font-size: 1.1rem;
  opacity: 0.95;
  font-weight: 500;
}

.hero {
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
  padding: 80px 0;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--success-color) 0%, var(--accent-color) 100%);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 32px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.badge:hover {
  transform: translateY(-2px);
}

.badge svg {
  flex-shrink: 0;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.3rem;
  color: var(--text-light);
  line-height: 1.8;
}

.license-info {
  padding: 80px 0;
  background: var(--bg-white);
}

.license-card {
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 48px;
  box-shadow: var(--shadow-md);
  max-width: 900px;
  margin: 0 auto;
}

.license-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--border-color);
}

.license-header h3 {
  font-size: 2rem;
  color: var(--text-dark);
  font-weight: 700;
}

.license-badge {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
}

.license-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: var(--bg-light);
  border-radius: 8px;
  transition: background 0.3s ease;
}

.detail-row:hover {
  background: #e8f4f8;
}

.label {
  font-weight: 600;
  color: var(--text-light);
  font-size: 1rem;
}

.value {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.1rem;
  text-align: right;
}

.features {
  padding: 80px 0;
  background: var(--bg-light);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 64px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: var(--bg-white);
  padding: 40px 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 50%;
  margin-bottom: 24px;
  color: white;
}

.feature-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.feature-card p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
}

.verification {
  padding: 80px 0;
  background: var(--bg-white);
}

.verification-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
  padding: 48px;
  border-radius: 16px;
  border: 2px solid var(--primary-color);
}

.verification-box h3 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 24px;
  font-weight: 700;
}

.verification-box p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.8;
}

.verify-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 16px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-md);
}

.verify-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.operator-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.operator-card {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 32px;
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  align-items: center;
  border: 3px solid #ffd700;
}

.operator-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-badge {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #ffeb3b 0%, #ffc107 100%);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.logo-badge svg {
  color: var(--text-dark);
}

.operator-content {
  flex: 1;
}

.operator-name {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.operator-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.operator-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.operator-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-light);
}

.operator-features li svg {
  flex-shrink: 0;
}

.operator-action {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.play-now-button {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 20px 64px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.3rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-md);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.play-now-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.payment-methods {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.payment-icon {
  padding: 6px 12px;
  background: var(--bg-light);
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dark);
}

.payment-icon.visa {
  background: #1a1f71;
  color: white;
}

.payment-icon.mastercard {
  background: #eb001b;
  color: white;
}

.payment-icon.neteller {
  background: #8dc63f;
  color: white;
}

.payment-icon.skrill {
  background: #7a1e78;
  color: white;
}

.payment-icon.paysafe {
  background: #004990;
  color: white;
}

.payment-icon.gpay {
  background: #4285f4;
  color: white;
}

.operator-approval {
  margin-top: 24px;
  text-align: center;
}

.operator-approval p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  padding: 16px 32px;
  border-radius: 8px;
  display: inline-block;
  border-left: 4px solid #10b981;
}

.compliance {
  padding: 80px 0;
  background: var(--bg-light);
}

.compliance-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.compliance-content h3 {
  font-size: 2.2rem;
  color: var(--text-dark);
  margin-bottom: 24px;
  font-weight: 700;
}

.compliance-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 32px;
}

.subsection-title {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin: 48px 0 24px;
  font-weight: 700;
}

.help-organizations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin: 48px 0;
  text-align: left;
}

.org-card {
  background: var(--bg-white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.org-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.org-header {
  margin-bottom: 20px;
}

.org-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.org-description {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.org-link {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.org-link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.compliance-note {
  background: var(--bg-white);
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-top: 48px;
}

.footer {
  background: #0d4d4d;
  color: white;
}

.footer-top {
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-warning {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 24px;
}

.eurovision-link-box {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.eurovision-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 16px 48px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-md);
  border: 2px solid white;
}

.eurovision-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.eurovision-text {
  font-size: 1.2rem;
}

.warning-icon {
  flex-shrink: 0;
}

.warning-icon svg {
  color: #ffd700;
}

.warning-content {
  flex: 1;
}

.warning-title {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

.footer-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.badge-item:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.age-badge svg {
  color: white;
}

.badge-box {
  display: flex;
  flex-direction: column;
  border: 2px solid white;
  padding: 8px 12px;
  border-radius: 4px;
}

.badge-text {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.badge-text-large {
  font-size: 1.4rem;
  font-weight: 700;
  padding: 8px 16px;
  border: 2px solid white;
  border-radius: 4px;
}

.badge-text-medium {
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.7;
}

.footer-bottom {
  background: #083838;
  padding: 24px 0;
  text-align: center;
}

.footer-bottom .container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.license-info {
  font-size: 0.85rem;
  opacity: 0.8;
  margin: 0;
}

.copyright {
  font-size: 0.85rem;
  opacity: 0.7;
  margin: 0;
}

@media (max-width: 768px) {
  .logo-area h1 {
    font-size: 1.8rem;
  }

  .tagline {
    font-size: 1rem;
  }

  .hero {
    padding: 48px 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .badge {
    font-size: 1rem;
    padding: 12px 24px;
  }

  .badge svg {
    width: 40px;
    height: 40px;
  }

  .license-card {
    padding: 32px 24px;
  }

  .license-header {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .license-header h3 {
    font-size: 1.5rem;
  }

  .detail-row {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .value {
    text-align: center;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .verification-box {
    padding: 32px 24px;
  }

  .verification-box h3 {
    font-size: 1.5rem;
  }

  .footer-warning {
    flex-direction: column;
    text-align: center;
  }

  .warning-title {
    font-size: 0.85rem;
  }

  .footer-badges {
    gap: 20px;
  }

  .footer-links {
    flex-direction: column;
    gap: 16px;
  }

  .operator-card {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .operator-features {
    align-items: flex-start;
  }

  .play-now-button {
    padding: 16px 48px;
    font-size: 1.1rem;
  }

  .payment-methods {
    gap: 6px;
  }

  .payment-icon {
    font-size: 0.65rem;
    padding: 4px 8px;
  }
}
