:root{
    --primary:#7c3aed;
    --secondary:#06b6d4;
    --dark:#0f172a;
    --card:#1e293b;
    --light:#f8fafc;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

/* 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; color: #1eff8e; }

.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%;
}

body{
    background:var(--dark);
    color:white;
    overflow-x:hidden;
}

/* Simple Hero Section - EXACTLY LIKE THE IMAGE */
.simple-hero {
  width: 100%;
  background: #1f1d1d;
  background: linear-gradient(to bottom, #040404, #0d1a2d);
  padding: 60px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  margin-top: 60px;
}

.simple-title {
  color: #FFF4E8;  /* Reines Weiß */
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  max-width: 1000px;
  margin: 0 auto 20px auto;
  text-align: center;
  letter-spacing: normal;
}

.simple-text {
  color: #cccccc;
  font-size: 16px;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-weight: 400;
}

.simple-link {
  color: #ffd700;
  text-decoration: none;
  font-weight: 500;
}

.simple-link:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
     margin-bottom: 100px;
     position: static;
  }
  .logo { font-size: 20px; }
  .simple-title {
    font-size: 24px;
  }
  
  .simple-text {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .nav {
     margin-bottom: 100px;
     position: static;
  }
  .simple-title {
    font-size: 20px;
  }
  
  .simple-text {
    font-size: 14px;
  }
}




/* RESPONSIVE NAV */

.menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
}

@media(max-width:768px){
    .menu-toggle{
        display:block;
    }

    .hero h1{
        font-size:2.2rem;
    }

    .payments-container{
    flex-direction:column;
    gap:30px;
}
}
/* BOTÓN WHATSAPP FLOTANTE */

.whatsapp-float{
    position:fixed;
    bottom:95px;
    right:25px;
    width:60px;
    height:60px;
    background:#25D366;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,0.3);
    z-index:9999;
    transition:0.3s;
}

.whatsapp-float:hover{
    transform:scale(1.1);
    box-shadow:0 15px 35px rgba(0,0,0,0.4);
}




























/* um das Problem vom versteckten div zu beheben */
html {
  scroll-padding-top: 200px; /* Funktioniert für alle internen Links */
}






/* Geräte */
/* ========== GRUNDSTIL (Desktop) ========== */
.device-list {
    font-family: Arial, sans-serif;
    font-size: 16px;
    position: sticky;
    top: 75px;
    color: #817c7c;
    background-color: #1f1d1d;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    overflow-x: visible;
    overflow-y: visible;
}

.device-list div {
    padding: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    transition: border-color 0.3s ease;
    cursor: pointer;
}

.device-list div:hover {
    border-color: #2a4b8c;
}

.device-list a {
    text-decoration: none;
    color: #817c7c;
}

/* Icons */
.nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #2f6f5f;
    transition: all 0.2s ease;
    cursor: pointer;
    margin-bottom: 5px;
}

.nav-icon svg {
    width: 20px;
    height: 20px;
}

/* ========== MEDIA QUERIES MIT SCROLLEN ========== */

/* Tablets (max-width: 768px) - horizontales Scrollen */
@media (max-width: 768px) {
    .device-list {
        gap: 12px;
        top: 60px;
        justify-content: flex-start;     /* links ausrichten für Scrollen */
        overflow-x: auto;                /* horizontales Scrollen aktivieren */
        overflow-y: hidden;
        flex-wrap: nowrap;               /* KEIN Umbrechen */
        padding: 10px 15px;
        scrollbar-width: thin;           /* dünne Scrollleiste für Firefox */
        -webkit-overflow-scrolling: touch; /* smoothes Scrollen auf iOS */
    }
    
    /* Scrollleiste stylen (Chrome, Edge, Safari) */
    .device-list::-webkit-scrollbar {
        height: 4px;
    }
    
    .device-list::-webkit-scrollbar-track {
        background: #1f1d1d;
        border-radius: 10px;
    }
    
    .device-list::-webkit-scrollbar-thumb {
        background: #2a4b8c;
        border-radius: 10px;
    }
    
    .device-list::-webkit-scrollbar-thumb:hover {
        background: #3a6cac;
    }
    
    .device-list div {
        flex-shrink: 0;                  /* verhindert Schrumpfen */
        min-width: 90px;
        padding: 8px 12px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    
    .nav-icon {
        width: 35px;
        height: 35px;
    }
    
    .nav-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .device-list span[data-key] {
        font-size: 12px;
        white-space: nowrap;             /* Text in einer Zeile */
    }
}

/* ========== HANDYS (max-width: 480px) ========== */
@media (max-width: 480px) {
    .device-list {
        gap: 10px;
        top: 55px;
        padding: 8px 12px;
    }
    
    .device-list::-webkit-scrollbar {
        height: 3px;                     /* noch dünnere Scrollleiste */
    }
    
    .device-list div {
        min-width: 75px;
        padding: 6px 8px;
        margin-top: 5px;
        margin-bottom: 5px;
        border-radius: 8px;
    }
    
    .nav-icon {
        width: 28px;
        height: 28px;
        margin-bottom: 3px;
    }
    
    .nav-icon svg {
        width: 14px;
        height: 14px;
    }
    
    .device-list span[data-key] {
        font-size: 10px;
    }
}

/* ========== SEHR KLEINE HANDYS (max-width: 380px) ========== */
@media (max-width: 380px) {
    .device-list {
        gap: 8px;
        padding: 6px 10px;
    }
    
    .device-list div {
        min-width: 65px;
        padding: 5px 6px;
    }
    
    .device-list span[data-key] {
        font-size: 9px;
    }
    
    .nav-icon {
        width: 24px;
        height: 24px;
    }
    
    .nav-icon svg {
        width: 12px;
        height: 12px;
    }
}
/* Optional: Fade-Effekt an den Rändern (für Handys) */
@media (max-width: 768px) {
    .device-list {
        mask-image: linear-gradient(to right, 
            transparent 0%, 
            black 5%, 
            black 95%, 
            transparent 100%);
        -webkit-mask-image: linear-gradient(to right, 
            transparent 0%, 
            black 5%, 
            black 95%, 
            transparent 100%);
    }
}




































/* IPTV Kaufen auf Smart TV */
.iptv-wrapper {
  max-width: 820px;
  margin: 0 auto;
  margin-bottom: 125px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.iptv-title {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  line-height: 1.4;
  color: #ffffff;
}

.iptv-title-highlight {
  color: #e63946;
  text-decoration: underline;
  text-decoration-color: #3a7bd5;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}

.iptv-title-rest {
  color: #ffffff;
  font-weight: 700;
}

.iptv-card {
  background-color: #1e2030;
  border-radius: 10px;
  padding: 28px 32px;
  color: #c8c8d8;
  font-size: 13.5px;
  line-height: 1.65;
}

.iptv-intro {
  margin-bottom: 20px;
  color: #a8a8bc;
  font-size: 13px;
}

.iptv-link {
  color:  #2f6f5f;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.iptv-link:hover {
  color: #b79915;
}

.iptv-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.iptv-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.step-number {
  background-color:  #2f6f5f;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.step-content strong {
  display: block;
  color: #f0f0f8;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.step-content p {
  margin: 0;
  color: #a8a8bc;
  font-size: 13px;
}

.iptv-expert-tip {
  background-color: #252840;
  border-left: 3px solid #e63946;
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 13px;
  color: #a8a8bc;
  line-height: 1.6;
}

.tip-label {
  color: #e63946;
  font-weight: 700;
  margin-right: 4px;
}








































/* 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;
    }
}