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

:root {
  --primary-color: #E8415A;
  --primary-hover: #ff5570;
  --text-light: #ffffff;
  --text-medium: #b0b0c3;
  --text-muted: #7a7a92;
  --bg-dark: #1A1A2E;
  --bg-section: #16213e;
  --border-color: #2a2a4e;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
  --accent-red: #E8415A;
  --accent-purple: #7b2cbf;
  --gaming-gradient: linear-gradient(135deg, #E8415A 0%, #7b2cbf 100%);
}

html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #1A1A2E;
}

::-webkit-scrollbar-thumb {
  background: #E8415A;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ff5570;
}

::selection {
  background: #E8415A;
  color: white;
}

::-moz-selection {
  background: #E8415A;
  color: white;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(232, 65, 90, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(232, 65, 90, 0.6);
  }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-light);
  background-color: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

.top-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.cta-button {
  display: inline-block;
  padding: 12px 28px;
  background: var(--gaming-gradient);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(255, 31, 90, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 31, 90, 0.4);
}

.cta-button:focus {
  outline: 3px solid rgba(255, 31, 90, 0.5);
  outline-offset: 2px;
}

.cta-large {
  padding: 16px 48px;
  font-size: 18px;
}

.hero {
  padding: 80px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, #16213e 0%, #1A1A2E 100%);
}

#headline {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-light);
}

.subheadline {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.benefits {
  list-style: none;
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: left;
}

.benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 17px;
  color: var(--text-muted);
}

.benefits .icon {
  width: 24px;
  height: 24px;
  color: var(--accent-red);
  flex-shrink: 0;
}

.credibility-note {
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-muted);
}

.discover-section,
.why-section,
.reviews-section,
.faq-section {
  padding: 60px 0;
}

.discover-section {
  background: var(--bg-dark);
}

h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  color: var(--text-light);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.card {
  background: var(--bg-section);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

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

.card-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-light);
}

.card p {
  color: var(--text-muted);
  line-height: 1.7;
}

.why-intro {
  text-align: center;
  font-size: 18px;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 800px;
  margin: 0 auto 32px;
}

.stat {
  text-align: center;
  padding: 32px;
  background: var(--bg-section);
  border: 1px solid var(--border-color);
  border-radius: 12px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  background: var(--gaming-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: var(--text-muted);
}

.disclaimer {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  font-style: italic;
}

.reviews-section {
  background: var(--bg-dark);
}

.reviews-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-top: -32px;
  margin-bottom: 40px;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.review {
  background: var(--bg-section);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.stars {
  color: #ffa500;
  font-size: 20px;
  margin-bottom: 16px;
}

.review-text {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.review-author {
  font-size: 14px;
  color: var(--text-medium);
  font-weight: 600;
}

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

.faq-item {
  background: var(--bg-section);
  border-radius: 12px;
  margin-bottom: 16px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  background: none;
  border: none;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: rgba(232, 65, 90, 0.1);
}

.faq-question:focus {
  outline: 2px solid var(--accent-red);
  outline-offset: -2px;
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  color: var(--accent-red);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 24px 24px;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer {
  background: #0f0f23;
  color: white;
  padding: 60px 0 40px;
  text-align: center;
}

.footer .cta-button {
  margin-bottom: 32px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-links a {
  color: var(--text-medium);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent-red);
}

.footer-links a:focus {
  outline: 2px solid var(--accent-red);
  outline-offset: 4px;
}

.footer-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 0;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
}

.sticky-bottom-bar.visible {
  transform: translateY(0);
}

.sticky-bottom-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sticky-text {
  color: white;
  font-weight: 600;
  font-size: 16px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.modal:target {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: var(--bg-section);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  max-width: 600px;
  margin: 20px;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 32px;
  color: var(--text-muted);
  text-decoration: none;
  line-height: 1;
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: var(--accent-red);
}

.modal-content h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--text-light);
}

.modal-content p {
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  #headline {
    font-size: 32px;
  }

  .subheadline {
    font-size: 18px;
  }

  h2 {
    font-size: 28px;
  }

  .hero {
    padding: 60px 0 40px;
  }

  .discover-section,
  .why-section,
  .reviews-section,
  .faq-section {
    padding: 40px 0;
  }

  .cards,
  .reviews,
  .stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cta-large {
    padding: 14px 36px;
    font-size: 16px;
  }

  .sticky-bottom-bar .container {
    flex-direction: column;
    gap: 12px;
  }

  .sticky-text {
    font-size: 14px;
  }

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

  .modal-content {
    padding: 28px;
    margin: 16px;
  }
}

@media (max-width: 480px) {
  .top-bar .cta-button {
    padding: 10px 20px;
    font-size: 14px;
  }

  .logo {
    height: 32px;
  }

  #headline {
    font-size: 28px;
  }

  .benefits li {
    font-size: 15px;
  }
}
