IPTViewers
Stream What You Love
Movies, Sports, Series & Live TV — All in One Place
Ultra HD Quality
Enjoy 4K & Full HD streaming on any device.
24/7 Support
Always available for setup and assistance.
All Devices
Watch on Smart TVs, Phones, Tablets & PCs.
Fast Servers
No lag, no buffer — just pure entertainment.
Choose Your Plan
1 Month
€9.99
3 Months
€24.99
12 Months
€59.99
/* ==== GLOBAL ==== */
body {
margin: 0;
font-family: ‘Poppins’, sans-serif;
background-color: #0a0a0a;
color: #ccc;
overflow-x: hidden;
}
/* Fade-in animation for sections */
section {
animation: fadeInUp 1.2s ease both;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* ==== HEADER ==== */
header {
background: #150025;
padding: 20px 40px;
display: flex;
align-items: center;
justify-content: space-between;
position: sticky;
top: 0;
z-index: 100;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
animation: slideDown 0.8s ease both;
}
@keyframes slideDown {
from {
transform: translateY(-50px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
header h1 {
color: #b084f9;
font-size: 28px;
letter-spacing: 1px;
text-shadow: 0 0 15px rgba(176, 132, 249, 0.6);
transition: 0.3s;
}
header h1:hover {
transform: scale(1.05);
}
nav a {
color: #bbb;
text-decoration: none;
margin: 0 15px;
font-weight: 500;
position: relative;
}
nav a::after {
content: “”;
display: block;
width: 0;
height: 2px;
background: #b084f9;
transition: width 0.3s;
}
nav a:hover::after {
width: 100%;
}
nav a:hover {
color: #b084f9;
}
/* ==== HERO ==== */
.hero {
text-align: center;
padding: 120px 20px;
background: linear-gradient(180deg, #150025, #000);
background-size: 200% 200%;
animation: bgPulse 6s infinite alternate ease-in-out;
}
@keyframes bgPulse {
0% { background-position: 0% 50%; }
100% { background-position: 100% 50%; }
}
.hero h2 {
color: #fff;
font-size: 48px;
margin-bottom: 15px;
animation: glowText 2s ease-in-out infinite alternate;
}
@keyframes glowText {
from { text-shadow: 0 0 10px #b084f9; }
to { text-shadow: 0 0 25px #b084f9; }
}
.hero p {
color: #ccc;
font-size: 18px;
}
.hero button {
margin-top: 25px;
background: #b084f9;
color: #000;
padding: 14px 28px;
font-size: 18px;
border: none;
border-radius: 8px;
cursor: pointer;
transition: 0.3s;
box-shadow: 0 0 10px rgba(176, 132, 249, 0.7);
}
.hero button:hover {
background: #8a61dc;
box-shadow: 0 0 25px #b084f9;
transform: scale(1.05);
}
/* ==== FEATURES ==== */
.features {
display: flex;
flex-wrap: wrap;
justify-content: center;
padding: 60px 20px;
background: #0f0f0f;
}
.feature-box {
background: #181818;
margin: 15px;
padding: 30px;
width: 280px;
border-radius: 12px;
text-align: center;
transition: 0.3s;
transform: scale(1);
box-shadow: 0 0 0 rgba(176, 132, 249, 0);
}
.feature-box:hover {
transform: scale(1.07);
box-shadow: 0 0 25px rgba(176, 132, 249, 0.7);
}
.feature-box h3 {
color: #b084f9;
margin-bottom: 10px;
font-size: 20px;
}
/* ==== PRICING ==== */
.pricing {
text-align: center;
padding: 80px 20px;
background: #000;
}
.pricing h2 {
color: #fff;
font-size: 36px;
margin-bottom: 40px;
animation: glowText 2s infinite alternate;
}
.plan {
display: inline-block;
background: #150025;
margin: 15px;
padding: 40px;
border-radius: 10px;
width: 250px;
color: #fff;
transition: 0.4s;
position: relative;
overflow: hidden;
}
.plan:hover {
transform: translateY(-10px);
box-shadow: 0 0 25px #b084f9;
}
.plan h4 {
color: #b084f9;
font-size: 24px;
}
.plan p {
color: #aaa;
margin: 10px 0;
}
.plan button {
margin-top: 20px;
background: #b084f9;
border: none;
color: #000;
padding: 10px 20px;
font-size: 16px;
border-radius: 5px;
cursor: pointer;
transition: 0.3s;
}
.plan button:hover {
background: #8a61dc;
box-shadow: 0 0 15px #b084f9;
}
/* ==== FOOTER ==== */
footer {
background: #150025;
color: #aaa;
text-align: center;
padding: 25px;
font-size: 14px;
border-top: 1px solid #b084f9;
}
footer:hover {
background: #1e0037;
}