/* Benutzerdefinierter Mauszeiger */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid #2a7262;  /* Grüner Rand */
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, border-color 0.2s, background-color 0.2s;
    z-index: 9999;
    mix-blend-mode: difference;
    will-change: transform;
    
    /* Punkt in der Mitte */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Der innere Punkt */
.custom-cursor::after {
    content: '';
    width: 4px;
    height: 4px;
    background-color: white;
    border-radius: 50%;
    display: block;
    transition: width 0.2s, height 0.2s;
}

/* Hover-Effekt für klickbare Elemente */
.custom-cursor.hover {
    width: 48px;
    height: 48px;
    border-color: #2d5a50;
    background-color: rgba(0, 255, 195, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 195, 0.5);
}

.custom-cursor.hover::after {
    width: 6px;
    height: 6px;
}

/* Für Links und Buttons */
.custom-cursor.link-hover {
    width: 48px;
    height: 48px;
    border-color: #00ffc3;
    background-color: rgba(0, 255, 195, 0.2);
}

.custom-cursor.link-hover::after {
    width: 6px;
    height: 6px;
}

/* Für Elemente mit Animationen */
.custom-cursor.animated-hover {
    width: 56px;
    height: 56px;
    border-color: #00ffc3;
    background-color: rgba(0, 255, 195, 0.3);
    box-shadow: 0 0 20px #00ffc3;
}

.custom-cursor.animated-hover::after {
    width: 8px;
    height: 8px;
    box-shadow: 0 0 10px #00ffc3;
}

/* Klick-Effekt */
.custom-cursor.click {
    transform: translate(-50%, -50%) scale(0.8);
}

/* Standard-Mauszeiger ausblenden */
body, a, button, [role="button"], input, select, textarea,
.preis-card, .whatsapp-logo, .payment-icon {
    cursor: none;
}

/* Auf mobilen Geräten */
@media (max-width: 768px) {
    .custom-cursor {
        display: none;
    }
    
    body, a, button, [role="button"], input, select, textarea,
    .preis-card, .whatsapp-logo, .payment-icon {
        cursor: auto;
    }
}




















































* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

body {
  background: #021826;
  color: white;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 20px 60px;
  background: rgba(3, 29, 44, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(8px); /* Für Safari */
  z-index: 1000;
}

.menu {
  margin-left: auto;   /* KEY FIX */
}

.logo {
  font-size: 22px;
  font-weight: bold;
}

.menu a {
  color: #cfe8ff;
  text-decoration: none;
  margin-right: 30px;   /* links ausgerichtet → right statt left */
  position: relative;
  font-size: 18px;
}

/* Hover Linie */
.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  background: #1eff8e;
  transition: 0.3s;
}

/* Bei Hover sichtbar */
.menu a:hover::after {
  width: 100%;
}

/* Aktiver Link bleibt unterstrichen */
.menu a.active::after {
  width: 100%;
}

/* HERO */

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
  gap: 40px;
}

.left {
  max-width: 650px;
}

h1 {
  font-size: 42px;
  line-height: 1.2;
  background: linear-gradient(90deg,#1eff8e,#4ecbff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.icons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 30px 0;
  color: #cfe8ff;
}

p {
  color: #b8c7d9;
  line-height: 1.6;
  margin-bottom: 30px;
}

button {
  background: #1eff8e;
  color: #002b1a;
  border: none;
  padding: 14px 26px;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(30,255,142,0.5);
  transition: 0.3s;
}

button:hover {
  transform: scale(1.05);
}

/* IMAGE RIGHT */

.right img {
  width: 420px;
  height: 420px;
  object-fit: cover;
  border-radius: 50%;
}

/* MOBILE */

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .right img {
    width: 300px;
    height: 300px;
  }
}



















/* Style für den Bereich Unter IPTV-Packete Button */
.badge-section {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 30px;
}

.badge-container {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 12px 30px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  text-align: center;
  animation: pulse 2s infinite;
}

.badge-text {
  color: white;
  font-size: 24px;
  font-weight: bold;
  display: block;
  letter-spacing: 1px;
}

.badge-subtext {
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  display: block;
  margin-top: 5px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Bestehende Icons-Korrektur (Bootstrap Icons) */
.icons span {
  display: inline-block;
  text-align: center;
  margin: 0 10px;
  font-size: 14px;
}

.icons i {
  font-size: 32px;
  margin-bottom: 8px;
  display: block;
}




















.sport-section {
  width: 100%;
  padding: 60px 0;
  background:rgba(15,23,42,0.8);
  color: #333;
  text-align: center;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sport-section .sport-container {
  max-width: 1300px;
  width: 90%;
  margin: 0 20px;
  margin-right: 100px;
  margin-left: 100px;
  background: linear-gradient(135deg, rgba(15,23,42,0.8) 0%, rgba(15,23,42,0.8) 100%);
  border-radius: 20px;
  padding: 40px 20px;
  padding-top: 5px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.sport-header {
  max-width: 1200px;
  margin: 0 auto 40px auto;
  padding: 0 20px;
  padding-bottom: 0px;
}

.sport-header h2 {
  font-size: 25px;
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  margin-bottom: 10px;
  margin-top: 10px;
  line-height: 1.2;
}

.sport-header h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #667eea;
  font-weight: bold;
}

.sport-header p {
  font-size: 18px;
  color: #FFFFFF;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Marquee Container */
.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 20px 0;
  background: transparent;
}

.marquee-container::before,
.marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
}

.marquee-container::after {
  right: 0;
}

.marquee-content {
  display: flex;
  gap: 25px;
  padding: 15px 0;
  width: max-content;
  will-change: transform;
}

.marquee-content img {
  width: 200px;
  height: 350px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.marquee-content img:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

/* Animationen basierend auf dem bereitgestellten Beispiel */
@keyframes seamlessRight {
  0% { transform: translateX(0); }
  12.5% { transform: translateX(-12.5%); }
  12.51% { transform: translateX(-12.5%); }
  25% { transform: translateX(-12.5%); }
  37.5% { transform: translateX(-25%); }
  37.51% { transform: translateX(-25%); }
  50% { transform: translateX(-25%); }
  62.5% { transform: translateX(-37.5%); }
  62.51% { transform: translateX(-37.5%); }
  75% { transform: translateX(-37.5%); }
  87.5% { transform: translateX(-50%); }
  87.51% { transform: translateX(-50%); }
  99.99% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

@keyframes seamlessLeft {
  0% { transform: translateX(-50%); }
  12.5% { transform: translateX(-37.5%); }
  12.51% { transform: translateX(-37.5%); }
  25% { transform: translateX(-37.5%); }
  37.5% { transform: translateX(-25%); }
  37.51% { transform: translateX(-25%); }
  50% { transform: translateX(-25%); }
  62.5% { transform: translateX(-12.5%); }
  62.51% { transform: translateX(-12.5%); }
  75% { transform: translateX(-12.5%); }
  87.5% { transform: translateX(0); }
  87.51% { transform: translateX(0); }
  99.99% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.top-marquee .marquee-content {
  animation: seamlessRight 24s infinite;
}

.bottom-marquee .marquee-content {
  animation: seamlessLeft 24s infinite;
}

.top-marquee .marquee-content:hover,
.bottom-marquee .marquee-content:hover {
  animation-play-state: paused;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .sport-section .sport-container {
    border-radius: 30px;
    padding: 30px 15px;
  }
  
  .sport-header h2 {
    font-size: 24px;
  }
  
  .sport-header h3 {
    font-size: 22px;
  }
  
  .sport-header p {
    font-size: 16px;
  }
  
  .sport-section .marquee-content img {
    width: 180px;
    height: 110px;
  }
  
  .marquee-container::before,
  .marquee-container::after {
    width: 50px;
  }
}

@media (max-width: 480px) {
  .sport-section {
    padding: 40px 15px;
  }
  
  .sport-section .sport-container {
    border-radius: 20px;
    padding: 20px 10px;
  }
  
  .marquee-content {
    gap: 15px;
  }
  
  .marquee-content img {
    width: 140px;
    height: 85px;
  }
}














































/* Rotierendes Banner am oberen Rand von Preise div */
.rotating-banner-capseln {
    width: 85%;
    margin: 20px auto -30px auto;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    z-index: 20;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 255, 195, 0.3);
}

.rotating-banner {
    width: 100%;
    overflow: hidden;
}

.banner-track {
    display: flex;
    animation: rotateBanner 30s linear infinite;
    width: fit-content;
}

.banner-track.paused {
    animation-play-state: paused;
}

.banner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
    border-radius: 10px;
    margin: 5px;
}

/* Sport-Item spezifisch */
.sport-item {
    min-width: 150px;
    height: 80px;
    padding: 0;
    overflow: hidden;
}

.sport-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.sport-logo:hover {
    transform: scale(1.1);
}

@keyframes rotateBanner {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .rotating-banner-capseln {
        width: 95%;
    }
    
    .sport-item {
        min-width: 120px;
        height: 60px;
    }
}






















/* Beschreibungs-Block unter dem Titel Smart IPTV kaufen */
.preise-description {
    max-width: 800px;
    margin: 0 auto 50px auto;
    text-align: center;
    color: white;
}

.description-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.feature-list {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 195, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(0, 255, 195, 0.3);
}

.feature-check {
    color: #00ffc3;
    font-size: 20px;
    font-weight: bold;
    justify-content: center;
}

.feature-item span:last-child {
    font-size: 15px;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .description-text {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .feature-list {
        gap: 15px;
    }
    
    .feature-item {
        padding: 6px 15px;
    }
    
    .feature-item span:last-child {
        font-size: 14px;
    }
}

/* <!-- Preise Teil --> */

.preise {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #000 60%, #2f6f5f);
    color: white;
    text-align: center;
    font-family: Arial, sans-serif; 
}

.preise-title {
    margin-bottom: 50px;
    font-size: 22px;
}

.preise-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    z-index: 2;
     /* Stellt gleiche Höhe der Kinder sicher */
    align-items: stretch;
}

.preis-card {
    width: 260px;
    padding: 30px 20px;
    border-radius: 15px;
    background: linear-gradient(to bottom, #0d1f1b, #2f6f5f);
    border: 1px solid #00ffc3;
    box-shadow: 0 0 15px rgba(0,255,195,0.2);
    transition: 0.3s;


    /* Wichtige Ergänzungen für die Button-Positionierung */
    display: flex;
    flex-direction: column;
    height: auto; /* Stellt sicher, dass alle Karten gleich hoch sind */

    /* Minimale Höhe für konsistente Darstellung */
    min-height: 550px; /* Passe diesen Wert an */
}

.preis-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(0,255,195,0.4);
}

.preis {
    font-size: 32px;
    font-weight: bold;
    margin: 15px 0 5px;
}

.preis-small {
    font-size: 13px;
    color: #cfcfcf;
    margin-bottom: 20px;
}

.preis-card ul {
    list-style: none;
    text-align: left;
    font-size: 14px;
    margin-bottom: 25px;
    padding-left: 0;
}

.preis-card ul li {
    margin-bottom: 8px;
}

.preis-card ul li::before {
    content: "✔ ";
    font-size: 22px;
    color: #00ffc3;
}

.preis-card button {
    background: #00ffc3;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;

     /* Button nach unten schieben */
    margin-top: auto;
    /* Optional: Button zentrieren */
    width: 100%;
    /* Optional: Bessere Darstellung bei langen Inhalten */
    align-self: flex-end;

}

.preis-card button:hover {
    background: #00cfa0;
}

.highlight {
    border: 2px solid #00ffc3;
}


/* Bezahlungsmethoden */
.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.payment-icon {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-icon i {
    font-size: 16px;
}

/* Hover-Effekt */
.payment-icon:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}
























/* WhatsApp schwebender Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* WhatsApp Logo */
.whatsapp-logo {
    cursor: pointer;
    z-index: 1002;
}

.whatsapp-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25d366;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-logo img:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Kontaktkarte */
.contact-card {
    position: absolute;
    bottom: 80px; /* Über dem Logo */
    right: 0;
    width: 280px;
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid #00ffc3;
    animation: slideUp 0.3s ease;
    z-index: 1001;
}

/* Versteckte Kontaktkarte */
.contact-card.hidden {
    display: none;
}

.contact-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.contact-header h4 {
    margin: 0;
    color: #0d1f1b;
    font-size: 18px;
    font-weight: bold;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.close-btn:hover {
    background: #f0f0f0;
    color: #333;
}

.contact-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    background: #f5f5f5;
}

.contact-item:hover {
    transform: translateX(-5px);
    background: #00ffc3;
    color: #000;
}

.contact-item img {
    width: 24px;
    height: 24px;
}

.contact-item span:first-child {
    font-size: 20px;
}

/* Animation */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Anpassung */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-logo img {
        width: 50px;
        height: 50px;
        padding: 8px;
    }
    
    .contact-card {
        width: 260px;
        bottom: 70px;
        padding: 15px;
    }
}



























































.why-section {
    max-width: 100%;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
    color: white;
    
    /* Grüner Farbverlauf von oben (grün) nach unten (schwarz) */
    background: linear-gradient(180deg, #2f6f5f 0%, #000000 100%);
    border-radius: 0px 0px 700px 700px; /* Optional: abgerundete untere Ecken */
}

.why-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
    color: white;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.why-subtitle {
    font-size: 18px;
    color: #00ffc3;  /* Türkis-Grün für Akzente */
    margin-bottom: 30px;
    font-weight: 500;
}

.divider {
    width: 100px;
    height: 3px;
    background: #00ffc3;
    margin: 0 auto 50px auto;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 255, 195, 0.5);
}

.why-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.why-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    height: 270px;
    padding: 30px 25px;
    background: rgba(0, 0, 0, 0.4);  /* Transparentes Schwarz */
    backdrop-filter: blur(5px);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 195, 0.3);
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 5;
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: #00ffc3;
    box-shadow: 0 15px 30px rgba(0, 255, 195, 0.2);
    background: rgba(0, 0, 0, 0.6);
}

.why-card h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #00ffc3;
}

.why-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #f0f0f0;
    margin: 0;
}

.why-card span {
    font-size: 50px;
    line-height: 1.6;
    color: #1d9230;
}

/* Responsive */
@media (max-width: 768px) {
    .why-section {
        padding: 40px 15px;
        border-radius: 0px 0px 300px 300px;
    }
    
    .why-title {
        font-size: 26px;
    }
    
    .why-subtitle {
        font-size: 16px;
    }
    
    .why-card {
        min-width: 100%;
        padding: 25px 20px;
    }
    
    .why-card h3 {
        font-size: 20px;
    }
    
    .why-card p {
        font-size: 15px;
    }
}   