@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --black-primary: #000000;
  --black-secondary: #0a0a0a;
  --black-tertiary: #121212;
  --black-card: #181818;
  --orange-primary: #FF6B00;
  --orange-secondary: #FF8C00;
  --orange-tertiary: #FFA500;
  --orange-hover: #FF5500;
  --white-primary: #FFFFFF;
  --white-secondary: #F5F5F5;
  --white-muted: #B3B3B3;
  --gray-border: #282828;
  --success: #1DB954;
  --warning: #FFA500;
  --danger: #FF4444;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: var(--black-primary);
  color: var(--white-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--orange-primary);
}

img {
  max-width: 100%;
  height: auto;
}

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

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background: linear-gradient(180deg, var(--black-secondary) 0%, var(--black-primary) 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--gray-border);
  backdrop-filter: blur(10px);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-size: 28px;
  font-weight: 800;
  color: var(--white-primary);
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--orange-primary);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
}

nav ul li a {
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
}

nav ul li a:hover {
  color: var(--orange-primary);
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange-primary);
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

.btn {
  padding: 12px 28px;
  border: none;
  border-radius: 500px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: var(--orange-primary);
  color: var(--white-primary);
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white-primary);
  border: 2px solid var(--orange-primary);
}

.btn-secondary:hover {
  background: var(--orange-primary);
  color: var(--white-primary);
}

.btn-large {
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--white-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hero {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--black-secondary) 0%, var(--black-primary) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -1px;
}

.hero h1 span {
  color: var(--orange-primary);
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 50px 0;
  flex-wrap: wrap;
}

.badge {
  background: var(--black-card);
  padding: 20px 30px;
  border-radius: 16px;
  border: 1px solid var(--gray-border);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.badge:hover {
  border-color: var(--orange-primary);
  transform: translateY(-3px);
}

.badge-icon {
  font-size: 28px;
}

.badge-text {
  font-weight: 600;
  font-size: 15px;
}

.disclaimer {
  background: var(--black-card);
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  padding: 20px;
  margin-top: 40px;
  font-size: 13px;
  color: var(--white-muted);
  line-height: 1.8;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding: 80px 0;
}

.section-dark {
  background: var(--black-secondary);
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 18px;
  text-align: center;
  color: var(--white-muted);
  max-width: 700px;
  margin: 0 auto 60px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.step-card {
  background: var(--black-card);
  padding: 35px;
  border-radius: 16px;
  border: 1px solid var(--gray-border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange-primary), var(--orange-tertiary));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.step-card:hover::before {
  transform: scaleX(1);
}

.step-card:hover {
  border-color: var(--orange-primary);
  transform: translateY(-5px);
}

.step-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--orange-primary);
  margin-bottom: 15px;
  opacity: 0.8;
}

.step-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-description {
  color: var(--white-muted);
  font-size: 15px;
  line-height: 1.6;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.game-card {
  background: var(--black-card);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--gray-border);
  transition: all 0.3s ease;
  cursor: pointer;
}

.game-card:hover {
  border-color: var(--orange-primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.2);
}

.game-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--black-tertiary) 0%, var(--black-secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}

.game-badges {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  gap: 8px;
}

.game-badge {
  background: var(--orange-primary);
  color: var(--white-primary);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.game-badge-free {
  background: var(--success);
}

.game-content {
  padding: 25px;
}

.game-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.game-description {
  color: var(--white-muted);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.transparency-box {
  background: var(--black-tertiary);
  border: 1px solid var(--orange-primary);
  border-radius: 12px;
  padding: 25px;
  margin-top: 50px;
  text-align: center;
  font-weight: 600;
  color: var(--orange-primary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: var(--black-card);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid var(--gray-border);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--orange-primary);
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--white-secondary);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: var(--orange-primary);
}

.testimonial-location {
  color: var(--white-muted);
  font-size: 14px;
}

.support-organizations {
  background: var(--black-card);
  border: 1px solid var(--gray-border);
  border-radius: 16px;
  padding: 35px;
  margin-top: 50px;
}

.support-organizations h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--orange-primary);
}

.support-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.support-item {
  padding: 20px;
  background: var(--black-tertiary);
  border-radius: 12px;
  border: 1px solid var(--gray-border);
  transition: all 0.3s ease;
}

.support-item:hover {
  border-color: var(--orange-primary);
}

.support-name {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}

.support-contact {
  color: var(--white-muted);
  font-size: 14px;
}

.support-contact a {
  color: var(--orange-primary);
  text-decoration: underline;
}

.cta-section {
  background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-tertiary) 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 24px;
  margin: 80px 0;
}

.cta-section h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--white-primary);
  margin-bottom: 30px;
}

.cta-checklist {
  list-style: none;
  display: inline-block;
  text-align: left;
  margin-bottom: 35px;
}

.cta-checklist li {
  font-size: 18px;
  font-weight: 600;
  color: var(--white-primary);
  margin-bottom: 15px;
  padding-left: 35px;
  position: relative;
}

.cta-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-size: 24px;
  color: var(--white-primary);
}

.cta-subtext {
  font-size: 14px;
  color: var(--white-primary);
  opacity: 0.9;
  margin-top: 20px;
}

footer {
  background: var(--black-secondary);
  padding: 60px 0 30px;
  border-top: 1px solid var(--gray-border);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer-section h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--orange-primary);
}

.footer-section p {
  color: var(--white-muted);
  font-size: 14px;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--white-muted);
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--orange-primary);
}

.footer-bottom {
  border-top: 1px solid var(--gray-border);
  padding-top: 30px;
  text-align: center;
  color: var(--white-muted);
  font-size: 13px;
  line-height: 1.8;
}

.content-section {
  background: var(--black-card);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--gray-border);
  margin-bottom: 30px;
}

.content-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--orange-primary);
}

.content-section h3 {
  font-size: 24px;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.content-section p {
  color: var(--white-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.content-section ul {
  list-style: none;
  margin-left: 0;
  margin-bottom: 20px;
}

.content-section li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 12px;
  color: var(--white-secondary);
  line-height: 1.7;
}

.content-section li::before {
  content: '•';
  position: absolute;
  left: 10px;
  color: var(--orange-primary);
  font-size: 20px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.info-card {
  background: var(--black-tertiary);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--gray-border);
}

.info-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--orange-primary);
}

.contact-form {
  background: var(--black-card);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--gray-border);
  max-width: 700px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--white-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  background: var(--black-tertiary);
  color: var(--white-primary);
  font-family: inherit;
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange-primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.checkbox-group {
  margin-bottom: 20px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 15px;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-label span {
  font-size: 14px;
  color: var(--white-muted);
  line-height: 1.5;
}

.form-note {
  background: var(--black-tertiary);
  padding: 15px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--white-muted);
  margin-top: 20px;
  line-height: 1.6;
}

.alternative-contact {
  margin-top: 50px;
  text-align: center;
}

.alternative-contact h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.game-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  background: var(--black-card);
  border: 1px solid var(--gray-border);
  border-radius: 500px;
  color: var(--white-primary);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--orange-primary);
  border-color: var(--orange-primary);
  color: var(--white-primary);
}

.game-embed {
  background: var(--black-card);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid var(--gray-border);
  margin-top: 50px;
}

.game-embed h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.game-embed-description {
  color: var(--white-muted);
  margin-bottom: 25px;
  font-size: 15px;
}

.game-embed iframe {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
}

.page-header {
  padding: 60px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--black-secondary) 0%, var(--black-primary) 100%);
  border-bottom: 1px solid var(--gray-border);
}

.page-header h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.page-header p {
  font-size: 18px;
  color: var(--white-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--orange-primary);
}

.legal-section h3 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 15px;
}

.legal-section p {
  color: var(--white-secondary);
  line-height: 1.8;
  margin-bottom: 15px;
}

.legal-section ul {
  list-style: none;
  margin-left: 0;
}

.legal-section li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 10px;
  color: var(--white-secondary);
  line-height: 1.7;
}

.legal-section li::before {
  content: '→';
  position: absolute;
  left: 5px;
  color: var(--orange-primary);
}

.top-disclaimer {
  background: var(--black-card);
  border: 2px solid var(--orange-primary);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 50px;
}

.top-disclaimer h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--orange-primary);
  margin-bottom: 20px;
}

.top-disclaimer p {
  color: var(--white-secondary);
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 15px;
}

.company-info {
  background: var(--black-card);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--gray-border);
  margin-top: 40px;
  line-height: 1.8;
  color: var(--white-muted);
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--black-secondary);
    padding: 20px;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid var(--gray-border);
  }

  nav.active {
    transform: translateY(0);
  }

  nav ul {
    flex-direction: column;
    gap: 20px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .section-title {
    font-size: 32px;
  }

  .trust-badges {
    flex-direction: column;
    gap: 15px;
  }

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

  .cta-section h2 {
    font-size: 32px;
  }

  .page-header h1 {
    font-size: 36px;
  }

  .contact-form {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

  .section-title {
    font-size: 26px;
  }

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

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

  .btn-large {
    padding: 14px 30px;
    font-size: 15px;
  }
}