*{ margin:0; padding:0; box-sizing:border-box; font-family:'Inter',sans-serif; scroll-behavior:smooth; } :root{ --black:#080808; --dark:#141414; --card:#1A1A1A; --red:#DD0000; --gold:#FFCE00; --white:#FFFFFF; --gray:#BDBDBD; } body{ background: radial-gradient(circle at top right, rgba(255,206,0,.12), transparent 35%), radial-gradient(circle at left, rgba(221,0,0,.10), transparent 35%), #080808; color:white; overflow-x:hidden; } .container{ width:92%; max-width:1280px; margin:auto; } header{ position:fixed; top:0; left:0; width:100%; z-index:9999; background:rgba(8,8,8,.9); backdrop-filter:blur(20px); border-bottom:1px solid rgba(255,255,255,.05); } .navbar{ height:80px; display:flex; justify-content:space-between; align-items:center; } .logo{ font-size:34px; font-weight:900; background: linear-gradient( 90deg, #DD0000, #FFCE00 ); -webkit-background-clip:text; -webkit-text-fill-color:transparent; } .nav-links{ display:flex; align-items:center; gap:30px; } .nav-links a{ color:white; text-decoration:none; font-weight:600; transition:.3s; } .nav-links a:hover{ color:#FFCE00; } .btn{ padding:15px 28px; border-radius:14px; font-weight:700; text-decoration:none; display:inline-flex; align-items:center; justify-content:center; transition:.3s; } .btn-primary{ background:#DD0000; color:white; } .btn-primary:hover{ transform:translateY(-4px); } .btn-secondary{ background:#FFCE00; color:black; } .hero{ padding:150px 0 100px; position:relative; overflow:hidden; } .hero::before{ content:""; position:absolute; left:-100px; top:0; width:400px; height:400px; border-radius:50%; background:#DD0000; filter:blur(180px); opacity:.15; } .hero::after{ content:""; position:absolute; right:-100px; bottom:0; width:400px; height:400px; border-radius:50%; background:#FFCE00; filter:blur(180px); opacity:.15; } .hero-content{ display:grid; grid-template-columns:1fr 1fr; align-items:center; gap:60px; } .hero-badge{ display:inline-flex; align-items:center; gap:10px; padding:10px 18px; border-radius:999px; background: rgba(255,206,0,.08); border: 1px solid rgba(255,206,0,.25); margin-bottom:25px; } .hero h1{ font-size:78px; line-height:1; font-weight:900; margin-bottom:25px; } .hero p{ font-size:21px; line-height:1.8; color:#CFCFCF; margin-bottom:30px; } .hero-buttons{ display:flex; gap:15px; margin-bottom:30px; } .hero-features{ display:grid; grid-template-columns:repeat(2,1fr); gap:12px; list-style:none; } .hero-features li{ color:#D4D4D4; } .hero-image{ height:520px; overflow:hidden; border-radius:30px; box-shadow: 0 30px 80px rgba(0,0,0,.4); } .hero-image img{ width:100%; height:100%; object-fit:cover; } section{ padding:100px 0; } .section-title{ text-align:center; font-size:48px; font-weight:800; margin-bottom:60px; } .features{ display:grid; grid-template-columns:repeat(4,1fr); gap:25px; } .card{ background:#151515; padding:30px; border-radius:24px; border: 1px solid rgba(255,255,255,.05); transition:.35s; } .card:hover{ transform:translateY(-8px); border-color: rgba(255,206,0,.2); box-shadow: 0 20px 40px rgba(0,0,0,.3); } .card h3{ font-size:22px; margin-bottom:15px; } .card p{ line-height:1.8; color:#BDBDBD; } .devices-grid{ display:grid; grid-template-columns:repeat(6,1fr); gap:20px; } .device-card{ background:#151515; padding:30px 15px; text-align:center; border-radius:20px; font-size:18px; font-weight:700; transition:.3s; } .device-card:hover{ transform:translateY(-6px); } .pricing-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:25px; } .price-card{ background:#151515; border-radius:28px; padding:35px 25px; position:relative; border: 1px solid rgba(255,255,255,.05); transition:.3s; } .price-card:hover{ transform: translateY(-10px); box-shadow: 0 20px 50px rgba(221,0,0,.25); } .price-badge{ position:absolute; top:-12px; left:50%; transform: translateX(-50%); background:#FFCE00; color:black; padding:8px 15px; border-radius:999px; font-size:12px; font-weight:800; } .price-card h3{ font-size:28px; margin-bottom:10px; } .price{ font-size:54px; font-weight:900; color:#FFCE00; margin-bottom:20px; } .price-card ul{ list-style:none; } .price-card li{ padding:8px 0; color:#D1D1D1; } .buy-btn{ display:block; margin-top:25px; padding:15px; text-align:center; background:#DD0000; border-radius:12px; color:white; font-weight:700; text-decoration:none; } .stats{ display:grid; grid-template-columns:repeat(4,1fr); gap:25px; } .stat{ text-align:center; } .stat h2{ font-size:58px; font-weight:900; color:#FFCE00; margin-bottom:10px; } .stat p{ color:#BDBDBD; } .testimonials{ display:grid; grid-template-columns:repeat(3,1fr); gap:25px; } .testimonial-card{ background:#151515; padding:30px; border-radius:24px; border: 1px solid rgba(255,255,255,.05); } .testimonial-card p{ line-height:1.8; color:#D0D0D0; margin-top:15px; } .faq{ max-width:900px; margin:auto; } .faq-item{ background:#151515; padding:25px; border-radius:20px; margin-bottom:15px; } .faq-item h3{ margin-bottom:10px; } .faq-item p{ color:#C5C5C5; line-height:1.7; } .cta{ text-align:center; padding:120px 0; } .cta h2{ font-size:56px; margin-bottom:20px; } .cta p{ font-size:20px; color:#BDBDBD; margin-bottom:30px; } footer{ background:#050505; padding:80px 0 40px; border-top: 1px solid rgba(255,255,255,.05); } .footer-grid{ display:grid; grid-template-columns:2fr 1fr 1fr; gap:40px; } .footer-grid h3{ margin-bottom:20px; } .footer-grid ul{ list-style:none; } .footer-grid li{ margin-bottom:12px; } .footer-grid a{ text-decoration:none; color:#BDBDBD; } .copyright{ margin-top:40px; text-align:center; color:#777; } .whatsapp{ position:fixed; right:20px; bottom:20px; background:#25D366; color:white; padding:15px 20px; border-radius:999px; font-weight:700; text-decoration:none; z-index:99999; box-shadow: 0 15px 40px rgba(37,211,102,.4); } .whatsapp:hover{ transform:translateY(-3px); } .reveal{ opacity:0; transform:translateY(40px); transition:all .8s ease; } .reveal.active{ opacity:1; transform:translateY(0); } /* MOBILE */ @media(max-width:992px){ .hero-content, .features, .pricing-grid, .devices-grid, .stats, .testimonials, .footer-grid{ grid-template-columns:1fr 1fr; } .hero h1{ font-size:56px; } .hero-image{ height:420px; } } @media(max-width:768px){ .nav-links{ display:none; } .logo{ font-size:24px; } .navbar{ height:70px; } .hero{ padding:110px 0 60px; } .hero-content{ grid-template-columns:1fr; gap:25px; } .hero-image{ order:-1; height:240px; } .hero h1{ font-size:42px; line-height:1.05; } .hero p{ font-size:18px; } .hero-buttons{ flex-direction:column; } .hero-buttons .btn{ width:100%; } .hero-features{ grid-template-columns:1fr; } .features, .pricing-grid, .testimonials, .footer-grid{ grid-template-columns:1fr; } .devices-grid{ grid-template-columns:1fr 1fr; } .stats{ grid-template-columns:1fr 1fr; gap:15px; } .section-title{ font-size:32px; margin-bottom:35px; } .price-card{ padding:25px; } .price{ font-size:42px; } .cta h2{ font-size:38px; } .cta p{ font-size:18px; } .whatsapp{ right:15px; bottom:15px; padding:13px 18px; }

Unterstützte Geräte

📺 Smart TV
🔥 Fire TV
📱 Android
🍎 iPhone
💻 Windows
📡 MAG Box

Unsere Pakete

3 Monate

34.99€
  • ✓ 36.000+ Kanäle
  • ✓ 200.000+ VOD
  • ✓ 4K UHD
  • ✓ Anti Freeze
  • ✓ 24/7 Support
Jetzt Kaufen
BELIEBT

6 Monate

44.99€
  • ✓ 36.000+ Kanäle
  • ✓ 200.000+ VOD
  • ✓ 4K UHD
  • ✓ Anti Freeze
  • ✓ 24/7 Support
Jetzt Kaufen

1 Jahr

59.99€
  • ✓ 36.000+ Kanäle
  • ✓ 200.000+ VOD
  • ✓ 4K UHD
  • ✓ Anti Freeze
  • ✓ 24/7 Support
Jetzt Kaufen
BESTES ANGEBOT

2 Jahre

89.99€
  • ✓ 36.000+ Kanäle
  • ✓ 200.000+ VOD
  • ✓ 4K UHD
  • ✓ Anti Freeze
  • ✓ 24/7 Support
Jetzt Kaufen

Unsere Zahlen

15K+

Kunden

99.9%

Uptime

24/7

Support

4K

Qualität

Kundenbewertungen

⭐⭐⭐⭐⭐

Sehr stabile Server und hervorragende Qualität.

⭐⭐⭐⭐⭐

Schnelle Aktivierung und perfekter Support.

⭐⭐⭐⭐⭐

Bestes IPTV das ich bisher genutzt habe.

FAQ

Wie schnell erfolgt die Aktivierung?

Innerhalb weniger Minuten nach der Bestellung.

Auf welchen Geräten funktioniert IPTV?

Smart TV, Android, Fire TV Stick, iPhone, Tablet und PC.

Gibt es Support?

Ja, unser Support ist 24/7 verfügbar.

Starten Sie noch heute

Premium IPTV für Deutschland, Österreich und die Schweiz.

Jetzt Kaufen
WhatsApp