:root {
    --primary-color: #ff9d00;
    --primary-hover: #e68a00;
    --bg-dark: #090c15;
    --bg-card: #121826;
    --bg-card-hover: #1a2235;
    --text-main: #ffffff;
    --text-muted: #a0aec0;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.mt-5 {
    margin-top: 3rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff7300 100%);
    color: #111;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 157, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 157, 0, 0.5);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 157, 0, 0.5);
    color: var(--primary-color);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 157, 0, 0.15);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header */
header {
    background-color: rgba(9, 12, 21, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

nav ul {
    display: flex;
    gap: 25px;
}

nav a {
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
}

nav a:hover, nav a.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 100px;
    background: url('assets/hero-bg.png') center/cover no-repeat;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 900;
    text-shadow: 0 5px 25px rgba(0,0,0,1), 0 2px 10px rgba(0,0,0,0.8);
    letter-spacing: -0.5px;
}

.hero .highlight {
    color: var(--primary-color);
}

.hero p {
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #ffffff;
    text-shadow: 0 3px 15px rgba(0,0,0,1), 0 1px 5px rgba(0,0,0,0.8);
    font-weight: 600;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.hero-buttons .btn {
    width: 280px;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    position: relative;
    overflow: hidden;
}

/* Add a beautiful shine sweep effect on hover */
.hero-buttons .btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: all 0.75s ease;
}

.hero-buttons .btn:hover::after {
    left: 125%;
}

.hero-buttons .btn svg {
    transition: transform 0.3s ease;
}

.hero-buttons .btn:hover svg {
    transform: translateX(5px);
}

.device-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.device {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    color: #fff;
    opacity: 0.9;
    transition: var(--transition);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.device:hover {
    opacity: 1;
    transform: translateY(-5px);
    color: var(--primary-color);
}

.device svg {
    margin-bottom: 8px;
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.device:hover svg {
    filter: sepia(1) hue-rotate(350deg) saturate(300%) brightness(1); /* Approximate orange hover */
}

/* Stats Bar */
.stats-bar {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(10, 15, 25, 0.5);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item {
    transition: transform 0.4s ease;
    cursor: default;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon svg {
    color: var(--primary-color);
    margin-bottom: 15px;
    filter: drop-shadow(0 0 8px rgba(255, 157, 0, 0.4));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-item:hover .stat-icon svg {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(255, 157, 0, 0.8));
    color: #ffd000;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* Channels Showcase */
.channels-showcase {
    padding: 80px 0;
}

.subtitle {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.channel-logos {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 40px 0;
    width: 100%;
    margin-bottom: 50px;
}

/* Gradient fade on edges for smoother loop */
.channel-logos::before,
.channel-logos::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.channel-logos::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}

.channel-logos::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}

.logos-track {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.logos-track img {
    height: 75px;
    margin: 0 45px;
    vertical-align: middle;
    transition: transform 0.3s ease, filter 0.3s ease;
    object-fit: contain;
}

.logos-track img:hover {
    transform: scale(1.1);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.movie-posters {
    display: flex;
    justify-content: center;
    gap: 0;
    width: 100%;
    overflow: hidden;
}

.movie-posters .poster-card {
    position: relative;
    width: 16.666%;
    height: auto;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    flex-shrink: 0;
    transition: var(--transition);
}

.movie-posters .poster-card:hover {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 0 20px rgba(0,0,0,0.8);
}

.poster-card img.poster-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.poster-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
}

.poster-overlay img.platform-logo {
    max-width: 60%;
    max-height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.overlay-prime { background: linear-gradient(to top, rgba(0, 168, 225, 0.9) 0%, rgba(0, 168, 225, 0) 100%); }
.overlay-netflix { background: linear-gradient(to top, rgba(229, 9, 20, 0.9) 0%, rgba(229, 9, 20, 0) 100%); }
.overlay-hbomax { background: linear-gradient(to top, rgba(62, 10, 112, 0.9) 0%, rgba(62, 10, 112, 0) 100%); }
.overlay-appletv { background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%); }
.overlay-hulu { background: linear-gradient(to top, rgba(28, 231, 131, 0.9) 0%, rgba(28, 231, 131, 0) 100%); }

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background-color: var(--bg-card);
}

.device-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 50px;
    background: #2a2d36;
    border-radius: 30px;
    padding: 5px;
    display: inline-flex;
    margin-left: auto;
    margin-right: auto;
}

.device-tabs button {
    background: transparent;
    border: none;
    color: #aaaaaa;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.device-tabs button.active {
    background: #FFB347;
    color: #000000;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pricing-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 4px;
    text-align: center;
    border: none;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    color: #000000;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pricing-card.popular {
    background: #FFB347;
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #000000;
    font-weight: 900;
}

.plan-header p {
    color: #555555;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 25px;
}

.features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    flex-grow: 1;
    text-align: left;
}

.features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: #333333;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    align-items: flex-start;
}

.features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 16px;
    height: 16px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FFB347"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"/></svg>');
    background-size: cover;
}

.btn-primary.btn-dark {
    background: #000000;
    color: #ffffff;
}
.btn-primary.btn-dark:hover {
    background: #222222;
    color: #ffffff;
}

/* Lifetime Plan */
.lifetime-plan {
    padding: 80px 0;
}

.lifetime-container {
    display: flex;
    align-items: center;
    gap: 50px;
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
}

.lifetime-image {
    flex: 1;
}

.lifetime-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.lifetime-content {
    flex: 1;
}

.lifetime-content h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.lifetime-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background-color: var(--bg-card);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--bg-dark);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.feature-card.new-card {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 6px;
    padding: 30px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: #FFB347;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    color: #000;
}

.feature-card.new-card .card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    line-height: 1.3;
}

.feature-card.new-card .card-desc {
    font-size: 13px;
    color: #cccccc;
    line-height: 1.5;
}

.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.feature-card .icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.faq-item {
    margin-bottom: 15px;
}

/* Supported Devices */
.supported-devices { padding: 80px 0; background-color: var(--bg-dark); }
.supported-subtitle { color: #FFB347; font-size: 1.5rem; margin-bottom: 20px; font-weight: 700; }
.supported-title { font-size: 2.5rem; margin-bottom: 50px; font-weight: 800; }
.supported-content { display: flex; align-items: center; justify-content: center; gap: 50px; margin-bottom: 50px; flex-wrap: wrap; }
.supported-text { text-align: left; max-width: 500px; }
.supported-text p { font-size: 16px; color: #cccccc; line-height: 1.6; margin-bottom: 25px; }
.devices-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 900px; margin: 0 auto; }
.device-badge { display: flex; align-items: center; background: transparent; border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; padding: 10px 15px; width: calc(25% - 10px); min-width: 170px; gap: 15px; transition: 0.3s; }
.device-badge:hover { border-color: #FFB347; transform: translateY(-3px); }
.badge-icon { color: #fff; display: flex; }
.badge-text { text-align: left; line-height: 1.2; }
.badge-text span { font-size: 10px; color: #aaa; text-transform: uppercase; }
.badge-text strong { font-size: 16px; color: #fff; font-weight: 700; }
.device-orbit { position: relative; width: 100%; display: flex; justify-content: center; align-items: center; }

.faq-question {
    width: 100%;
    text-align: left;
    background: var(--bg-card);
    border: 1px solid var(--primary-color);
    color: var(--text-main);
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 157, 0, 0.1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--bg-dark);
    border-radius: 0 0 8px 8px;
}

.faq-answer p {
    padding: 15px 20px;
    color: var(--text-muted);
    font-size: 14px;
}

.faq-question.active {
    border-radius: 8px 8px 0 0;
    background: var(--primary-color);
    color: #000;
}

/* Footer */
footer {
    background: #05070d;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 40px;
}

.footer-col h3 {
    margin-bottom: 15px;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-col p, .footer-col ul {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 13px;
}

/* Responsive */
@media (max-width: 992px) {
    .pricing-grid, .features-grid, .contact-methods, .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .lifetime-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .pricing-grid, .features-grid, .contact-methods, .faq-grid, .footer-container {
        grid-template-columns: 1fr;
    }
    .stats-container {
        flex-wrap: wrap;
        gap: 20px;
    }
}



/* New Lifetime Plan Section */
.lifetime-container-new {
    display: flex;
    align-items: center;
    background: linear-gradient(145deg, #121826 0%, #0a0f18 100%);
    border: 1px solid rgba(255, 157, 0, 0.15);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    margin: 50px 0;
}

.lifetime-image-new {
    flex: 1;
    position: relative;
    height: 100%;
    min-height: 500px;
}

.lifetime-image-new img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lifetime-image-new::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 30%;
    background: linear-gradient(to right, transparent, #0a0f18);
}

.lifetime-badge-overlay {
    position: absolute;
    top: 30px;
    left: 30px;
    background: #FFB347;
    color: #000;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 179, 71, 0.4);
    z-index: 2;
}

.lifetime-content-new {
    flex: 1.2;
    padding: 60px 50px 60px 20px;
    position: relative;
    z-index: 3;
}

@media (max-width: 992px) {
    .lifetime-container-new {
        flex-direction: column;
    }
    .lifetime-image-new {
        width: 100%;
        min-height: 350px;
    }
    .lifetime-image-new::after {
        width: 100%;
        height: 30%;
        top: auto;
        bottom: 0;
        right: auto;
        background: linear-gradient(to top, #0a0f18, transparent);
    }
    .lifetime-content-new {
        padding: 40px;
    }
}

/* Creative Logo Animation */
@keyframes glowing-ring {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

.creative-logo-wrapper {
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.creative-logo-wrapper:hover {
    transform: scale(1.05);
}

.logo-ring-bg {
    position: absolute;
    inset: -3px;
    background: linear-gradient(90deg, #E50914, #FFB347, #E50914, #FFB347);
    border-radius: 50%;
    background-size: 400%;
    animation: glowing-ring 4s linear infinite;
    filter: blur(4px);
    opacity: 0.8;
}

.logo-inner-circle {
    position: relative;
    width: 44px;
    height: 44px;
    background: #090c15;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border: 2px solid rgba(255, 179, 71, 0.4);
}

/* WhatsApp Dynamic Pulse */
.whatsapp-float-dynamic { 
    position: fixed; 
    bottom: 25px; 
    right: 30px; 
    background: #25D366; 
    color: #fff; 
    width: 60px; 
    height: 60px; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    text-decoration: none; 
    border-radius: 50%; 
    z-index: 999; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.3); 
    transition: transform 0.3s; 
    animation: pulse-whatsapp-rings 2s infinite; 
}
.whatsapp-float-dynamic:hover { transform: scale(1.1); background-color: #128C7E; }
.whatsapp-float-dynamic svg { width: 36px; height: 36px; fill: #fff; margin-top: 1px; margin-left: 1px; }

@keyframes pulse-whatsapp-rings { 
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7), 0 0 0 0 rgba(37, 211, 102, 0.5); } 
    50% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0.3), 0 0 0 24px rgba(37, 211, 102, 0.1); }
    100% { box-shadow: 0 0 0 24px rgba(37, 211, 102, 0), 0 0 0 48px rgba(37, 211, 102, 0); } 
}
