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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #fff;
  background-color: #0a0a0a;
  min-height: 100vh;
}

.hero-header {
  background: linear-gradient(135deg, #7c2d9e 0%, #9b4ec7 50%, #b066d8 100%);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 30%);
  pointer-events: none;
}

.hero-header::after {
  content: '★ ★ ★ ★ ★ ▶ ● ◆ ★ ★ ★';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 6rem;
  opacity: 0.08;
  letter-spacing: 3rem;
  white-space: nowrap;
  pointer-events: none;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.hero-content > p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.main-nav {
  background: #1a1a1a;
  display: flex;
  justify-content: center;
  gap: 0;
  border-bottom: 1px solid #333;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  padding: 1.25rem 2rem;
  font-weight: 500;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  border-bottom-color: #9b4ec7;
  background: rgba(155, 78, 199, 0.1);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.betting-sites {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.site-card {
  background: #1a1a1a;
  border: 2px solid #333;
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.site-card:hover {
  border-color: #9b4ec7;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(155, 78, 199, 0.3);
}

.site-info {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.site-logo {
  min-width: 200px;
}

.logo-text {
  font-size: 3rem;
  font-weight: 900;
  font-style: italic;
}

.logo-text.bwin {
  color: #ffcc00;
}

.logo-text.betclic {
  background: #e63946;
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  display: inline-block;
}

.logo-text.unibet {
  color: #2d8f3c;
  display: block;
}

.unibet-dots {
  color: #2d8f3c;
  font-size: 1.5rem;
  letter-spacing: 0.5rem;
  margin-top: -0.5rem;
}

.site-rating {
  text-align: center;
}

.rating-score {
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffcc00;
  margin-bottom: 0.5rem;
}

.stars {
  color: #ffcc00;
  font-size: 1.25rem;
}

.site-action {
  text-align: center;
}

.cta-button {
  background: linear-gradient(135deg, #7c8bd6 0%, #9ba4e8 100%);
  color: #fff;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-block;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(124, 139, 214, 0.4);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 139, 214, 0.6);
}

.payment-methods {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.payment-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.testimonials {
  margin-bottom: 4rem;
}

.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #fff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: #2a2a2a;
  border: 1px solid #3a3a3a;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.testimonial-card p {
  color: #ccc;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.testimonial-card .stars {
  margin-bottom: 1rem;
}

.author {
  font-weight: 600;
  color: #fff !important;
}

.faq {
  margin-bottom: 4rem;
}

.faq h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #fff;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: transparent;
  border: 2px solid #333;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #9b4ec7;
}

.faq-item summary {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  list-style: none;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '⌄';
  position: absolute;
  right: 1.5rem;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

.faq-number {
  color: #666;
  font-size: 1.25rem;
  font-weight: 700;
}

.faq-question {
  color: #fff;
  font-weight: 500;
  flex: 1;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem 5rem;
  color: #bbb;
  line-height: 1.8;
}

.guide {
  background: linear-gradient(135deg, #7c2d9e 0%, #9b4ec7 50%, #b066d8 100%);
  padding: 4rem 2rem;
  margin: 0 -2rem;
  position: relative;
  overflow: hidden;
}

.guide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.guide-content {
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.3);
  padding: 3rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
}

.guide-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #fff;
}

.guide-content p {
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.guide-content ul {
  list-style: none;
  padding: 0;
}

.guide-content li {
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  padding-left: 1.5rem;
  position: relative;
}

.guide-content li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: #ffcc00;
  font-size: 1.2rem;
}

.footer {
  background: #0a0a0a;
  border-top: 1px solid #222;
  padding: 3rem 2rem 2rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.footer-section p {
  color: #999;
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-logos {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 2rem 0;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

.footer-logo {
  height: 40px;
  opacity: 0.7;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
}

.footer-logo:hover {
  opacity: 1;
}

.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 2rem 0;
}

.age-icon {
  background: #fff;
  color: #000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.9rem;
}

.footer-links a {
  color: #999;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-notice {
  text-align: center;
  color: #666;
  font-size: 0.85rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .site-card {
    flex-direction: column;
    gap: 2rem;
  }

  .site-info {
    flex-direction: column;
    gap: 1.5rem;
  }

  .main-nav {
    flex-direction: column;
  }

  .nav-link {
    text-align: center;
  }

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

  .faq-answer {
    padding-left: 1.5rem;
  }
}
