: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;
}

.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: 80px;
}

.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) {
  .simple-title {
    font-size: 24px;
  }
  
  .simple-text {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .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 */
.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;
    background: transparent;
}

.device-list div {
    padding: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    background-color: #000000;
    display: flex;              /* Von block zu flex ändern */
    flex-direction: column;      /* Elemente untereinander anordnen */
    align-items: center;         /* Horizontal zentrieren */
    justify-content: center;     /* Vertikal zentrieren */
    border: 1px solid transparent;
    transition: border-color 0.3s ease;
}


.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;           /* Icon-Farbe */
    transition: all 0.2s ease;
    cursor: pointer;
    margin-bottom: 5px;        /* Abstand zwischen Icon und Text */
}

.nav-icon svg {
    width: 20px;
    height: 20px;
}




































/* 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;
}