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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: #0a0a0a;
  color: #fff;
  line-height: 1.6;
}

/* ============ HEADER / NAV ============ */

header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 2px;
}

.logo span {
  color: #dc2626;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
}

nav a:hover {
  color: #dc2626;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
}

/* ============ HERO ============ */

#hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: url('Download (17).jfif') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.35) 50%, rgba(10, 10, 10, 0.88) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2rem;
  max-width: 900px;
}

.badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border: 1px solid #dc2626;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #dc2626;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

#hero h1 {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #fff, #fca5a5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 1rem;
  cursor: pointer;
}

.btn.primary {
  background: #dc2626;
  color: #fff;
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
}

.btn.primary:hover {
  background: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(220, 38, 38, 0.5);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
}

.hero-stats .stat {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.hero-stats .stat span {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

/* ============ SECTION HEADINGS ============ */

#features h2,
#ligen h2,
#anime h2,
#serien h2,
#pakete h2,
#kontakt h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.section-sub {
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

/* ============ LIGEN / ANIME / SERIEN (SCROLLING) ============ */

#ligen,
#anime,
#serien {
  padding: 6rem 0;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
}

#ligen h2,
#anime h2,
#serien h2 {
  padding: 0 2rem;
}

#ligen .section-sub,
#anime .section-sub,
#serien .section-sub {
  padding: 0 2rem;
}

.scroll-container {
  overflow: hidden;
}

.scroll-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: scrollLeft 35s linear infinite;
}

.scroll-track:hover {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Ligen Sports Cards */

.ligen-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-width: 300px;
  height: 280px;
  cursor: pointer;
  transition: all 0.4s;
  border: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.ligen-card:hover {
  transform: scale(1.03);
  border-color: rgba(220, 38, 38, 0.5);
  box-shadow: 0 10px 40px rgba(220, 38, 38, 0.2);
}

.ligen-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s;
}

.ligen-card:hover .ligen-img {
  transform: scale(1.1);
}

.ligen-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  text-align: left;
}

.ligen-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

.ligen-info span {
  font-size: 0.85rem;
  color: #dc2626;
  font-weight: 500;
}

/* Anime Cards */

.anime-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-width: 250px;
  height: 350px;
  cursor: pointer;
  transition: all 0.4s;
  border: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.anime-card:hover {
  transform: scale(1.05);
  border-color: rgba(220, 38, 38, 0.5);
  box-shadow: 0 10px 40px rgba(220, 38, 38, 0.2);
}

.anime-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s;
}

.anime-card:hover .anime-img {
  transform: scale(1.1);
}

.anime-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  text-align: left;
}

.anime-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
}

/* Series & Films Cards */

.series-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-width: 250px;
  height: 350px;
  cursor: pointer;
  transition: all 0.4s;
  border: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.series-card:hover {
  transform: scale(1.05);
  border-color: rgba(220, 38, 38, 0.5);
  box-shadow: 0 10px 40px rgba(220, 38, 38, 0.2);
}

.series-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s;
}

.series-card:hover .series-img {
  transform: scale(1.1);
}

.series-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  text-align: left;
}

.series-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
}

/* ============ FEATURES ============ */

#features {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  transition: all 0.3s;
  text-align: center;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(220, 38, 38, 0.25);
  transform: translateY(-4px);
}

.feature-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
}

/* ============ PAKETE ============ */

#pakete {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.paket-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.paket-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}

.paket-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.paket-card.highlight {
  border-color: #dc2626;
  background: rgba(220, 38, 38, 0.07);
  box-shadow: 0 0 40px rgba(220, 38, 38, 0.1);
}

.popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #dc2626;
  color: #fff;
  padding: 0.3rem 1.5rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  white-space: nowrap;
}

.paket-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

.preis {
  font-size: 2.8rem;
  font-weight: 900;
  margin: 1rem 0;
  color: #dc2626;
}

.preis span {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
}

.paket-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
  padding: 0;
  flex-grow: 1;
}

.paket-card ul li {
  padding: 0.45rem 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.paket-card ul li::before {
  content: "✓";
  color: #dc2626;
  margin-right: 0.7rem;
  font-weight: 700;
}

.paket-card .btn {
  width: 100%;
}

/* ============ FAQ ============ */

#faq {
  padding: 6rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.faq-grid {
  text-align: left;
  margin-top: 2rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.active {
  border-color: rgba(220, 38, 38, 0.3);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  user-select: none;
}

.faq-icon {
  font-size: 1.4rem;
  color: #dc2626;
  font-weight: 700;
  transition: transform 0.3s;
}

.faq-answer {
  max-height: 0;
  padding: 0 1.5rem;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.2rem;
}

/* ============ FADE-IN ANIMATION ============ */

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ BACK TO TOP ============ */

#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #dc2626;
  color: #fff;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
  z-index: 99;
}

#back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#back-to-top:hover {
  background: #b91c1c;
  transform: translateY(-2px);
}

/* ============ KONTAKT ============ */

#kontakt {
  padding: 6rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.08), rgba(220, 38, 38, 0.02));
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.kontakt-content {
  max-width: 700px;
  margin: 0 auto;
}

#kontakt h2 {
  margin-bottom: 1rem;
}

#kontakt p {
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

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

/* ============ FOOTER ============ */

footer {
  background: #050505;
  padding: 2rem;
  text-align: center;
}

.footer-logo {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.footer-logo span {
  color: #dc2626;
}

footer p {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.85rem;
}

/* ============ RESPONSIVE ============ */

@media (max-width: 1024px) {
  .paket-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
    z-index: 101;
  }

  nav ul {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(16px);
    padding: 5rem 2rem 2rem;
    gap: 1rem;
    transition: right 0.3s ease;
    z-index: 100;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
  }

  nav ul.open {
    right: 0;
  }

  nav ul li a {
    font-size: 1.1rem;
  }

  #hero h1 {
    font-size: 2.5rem;
  }

  .hero-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  #features h2,
  #ligen h2,
  #anime h2,
  #serien h2,
  #pakete h2,
  #kontakt h2 {
    font-size: 2rem;
  }

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

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

  .ligen-card {
    min-width: 250px;
    height: 220px;
  }

  .anime-card,
  .series-card {
    min-width: 200px;
    height: 280px;
  }
}
