/* 
 * Ustreaming VPN - Premium SaaS Design System
 * Inspired by HIGH-END SaaS (Dark Mode, Glassmorphism, Mesh Gradients)
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #007bff;
    --primary-glow: rgba(0, 123, 255, 0.4);
    --secondary: #00f2fe;
    --bg-deep: #050505;
    --bg-card: rgba(20, 20, 20, 0.6);
    --text-main: #ffffff;
    --text-dim: #94a3b8;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --accent-grad: linear-gradient(135deg, #007bff 0%, #00f2fe 100%);
    --surface-grad: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-deep);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- BACKGROUND DECORATION (MESH GRADIENTS) --- */
body::before {
    content: '';
    position: fixed;
    top: -10%;
    left: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.1) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    bottom: -10%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.05) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

/* --- TYPOGRAPHY --- */
h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.text-gradient {
    background: linear-gradient(180deg, #FFFFFF 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- NAVIGATION --- */
header {
    background: rgba(10, 10, 10, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s ease;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-brand img {
    height: 38px;
    filter: drop-shadow(0 0 10px rgba(0, 123, 255, 0.3));
}

.brand-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

a {
    text-decoration: none !important;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dim);
    transition: color 0.3s ease;
}

.login-link {
    margin-right: -10px;
}

.btn-premium {
    background: var(--accent-grad);
    color: #fff;
    padding: 12px 28px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px -5px var(--primary-glow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px var(--primary-glow);
    filter: brightness(1.1);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

/* --- HERO SECTION --- */
.hero {
    padding: 140px 0 60px;
    text-align: center;
}

.badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    display: inline-block;
}

.hero h1 {
    font-size: clamp(2.8rem, 8vw, 5rem);
    line-height: 1.05;
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-dim);
    max-width: 700px;
    margin: 0 auto 48px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-actions-single {
    justify-content: center;
}

.btn-neon-outline {
    color: #fff;
    border: 1px solid rgba(0, 242, 254, 0.75);
    padding: 18px 48px;
    border-radius: 100px;
    display: inline-block;
    min-width: 170px;
    font-size: 1.1rem;
    line-height: 1;
    text-align: center;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.08), rgba(124, 58, 237, 0.1));
    box-shadow: inset 0 0 18px rgba(0, 242, 254, 0.08), 0 0 22px rgba(0, 242, 254, 0.12);
    transition: all 0.3s ease;
}

.btn-neon-outline:hover {
    color: #fff;
    transform: translateY(-2px);
    border-color: var(--secondary);
    box-shadow: inset 0 0 22px rgba(0, 242, 254, 0.12), 0 14px 35px rgba(0, 242, 254, 0.18);
}

/* --- DEVICE ECOSYSTEM SHOWCASE --- */
.device-showcase-section {
    padding: 24px 0 70px;
}

.device-showcase {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    background:
        radial-gradient(circle at 22% 78%, rgba(168, 85, 247, 0.18), transparent 34%),
        radial-gradient(circle at 75% 20%, rgba(0, 242, 254, 0.18), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    padding: 52px 44px 28px;
}

.device-showcase::before {
    content: '';
    position: absolute;
    inset: 12% 6% auto;
    height: 430px;
    background: radial-gradient(ellipse, rgba(0, 242, 254, 0.2), transparent 60%);
    filter: blur(40px);
    pointer-events: none;
}

.showcase-copy {
    position: relative;
    z-index: 7;
    max-width: 610px;
}

.showcase-copy h2 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1.05;
    margin-bottom: 16px;
}

.showcase-copy p {
    color: var(--text-dim);
    font-size: 1.08rem;
    max-width: 540px;
}

.device-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(55px);
    opacity: 0.75;
    pointer-events: none;
}

.glow-cyan {
    width: 360px;
    height: 360px;
    right: 10%;
    top: 9%;
    background: rgba(0, 242, 254, 0.22);
}

.glow-purple {
    width: 430px;
    height: 430px;
    left: 8%;
    bottom: 2%;
    background: rgba(168, 85, 247, 0.2);
}

/* Scalable mockup wrapper — always renders at a fixed "desktop" size,
   then the outer .mockup-stage-wrapper scales it down for small viewports */
.mockup-stage-wrapper {
    position: relative;
    width: 100%;
    margin-top: 24px;
    /* Aspect ratio = inner height / inner width  (520 / 1160 ≈ 0.448) */
    aspect-ratio: 1160 / 520;
}

.mockup-stage {
    /* Fixed "desktop" canvas size */
    position: absolute;
    width: 1160px;
    height: 520px;
    top: 0;
    left: 0;
    transform-origin: top left;
    /* Scale is set dynamically via a CSS custom property from JS,
       but we also set a fallback using container-width approach */
}

.mockup-device {
    position: absolute;
    filter: drop-shadow(0 32px 45px rgba(0, 0, 0, 0.45));
}

.mockup-screen {
    position: absolute;
    overflow: hidden;
    background:
        linear-gradient(160deg, rgba(31, 45, 92, 0.96), rgba(4, 8, 22, 0.98)),
        radial-gradient(circle at 20% 20%, rgba(0, 242, 254, 0.2), transparent 35%);
}

.mockup-screen img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 28%;
}

.desktop-frame .mockup-screen img,
.laptop-frame .mockup-screen img {
    object-position: center center;
}

.mockup-screen::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 34%);
    pointer-events: none;
}

/* All device sizes use fixed px values (relative to the 1160×520 canvas) */
.monitor-device {
    width: 660px;
    aspect-ratio: 16 / 10;
    right: 120px;
    bottom: 72px;
    z-index: 2;
}

.desktop-frame {
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background: linear-gradient(145deg, #151923, #05070d);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.04);
}

.desktop-frame .mockup-screen {
    inset: 16px;
    border-radius: 14px;
}

.monitor-stand {
    position: absolute;
    width: 26%;
    height: 76px;
    left: 37%;
    bottom: -72px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03));
    clip-path: polygon(36% 0, 64% 0, 78% 100%, 22% 100%);
}

.monitor-stand::after {
    content: '';
    position: absolute;
    left: -40%;
    right: -40%;
    bottom: -9px;
    height: 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
}

.laptop-device {
    width: 480px;
    aspect-ratio: 16 / 10;
    left: 0;
    bottom: 12px;
    z-index: 5;
}

.laptop-frame {
    position: absolute;
    inset: 0 4% 9%;
    border-radius: 18px 18px 8px 8px;
    background: linear-gradient(145deg, #131720, #05070d);
    border: 1px solid rgba(255, 255, 255, 0.13);
    box-shadow: inset 0 0 0 7px rgba(255, 255, 255, 0.04);
}

.laptop-frame .mockup-screen {
    inset: 13px;
    border-radius: 10px;
}

.laptop-base {
    position: absolute;
    left: -2%;
    right: -2%;
    bottom: 0;
    height: 11%;
    border-radius: 0 0 26px 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.04));
}

.tablet-device {
    width: 240px;
    aspect-ratio: 3 / 4.35;
    right: 130px;
    bottom: 24px;
    z-index: 4;
}

.tablet-frame,
.phone-frame {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, #171b25, #03050a);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.04);
}

.tablet-frame {
    border-radius: 30px;
}

.tablet-frame .mockup-screen {
    inset: 14px;
    border-radius: 20px;
    background-image:
        url('/img/mockups/mockup4_UstreamingVPN-web.jpg'),
        linear-gradient(160deg, rgba(31, 45, 92, 0.96), rgba(4, 8, 22, 0.98));
    background-size: cover;
    background-position: center top;
}

.phone-device {
    width: 148px;
    aspect-ratio: 9 / 19.5;
    right: 18px;
    bottom: 28px;
    z-index: 6;
}

.phone-frame {
    border-radius: 32px;
}

.phone-frame .mockup-screen {
    inset: 9px;
    border-radius: 24px;
    background-image:
        url('/img/mockups/mockup3_UstreamingVPN-web.jpg'),
        linear-gradient(160deg, rgba(31, 45, 92, 0.96), rgba(4, 8, 22, 0.98));
    background-size: cover;
    background-position: center top;
}

/* --- CARDS & FEATURES --- */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--surface-grad);
    z-index: 0;
    opacity: 0.5;
}

.card-content {
    position: relative;
    z-index: 1;
}

.card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 123, 255, 0.3);
    background: rgba(30, 30, 30, 0.6);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.8);
}

.icon-box {
    width: 64px;
    height: 64px;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    color: var(--primary);
    font-size: 1.5rem;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.card p {
    color: var(--text-dim);
    font-size: 1rem;
}

/* --- PRICING SECTION --- */
.section-padding {
    padding: 60px 0;
}

.pricing-card {
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
}

.pricing-card.featured {
    border: 1px solid var(--primary);
    box-shadow: 0 0 40px rgba(0, 123, 255, 0.1);
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 24px 0;
    font-family: 'Outfit', sans-serif;
    color: #fff;
}

/* --- FOOTER --- */
footer {
    padding: 100px 0 60px;
    border-top: 1px solid var(--glass-border);
    background: rgba(5, 5, 5, 0.5);
}

/* --- MOBILE & RESPONSIVE --- */
@media (max-width: 991px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        padding: 60px 40px;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        border-left: 1px solid var(--glass-border);
        gap: 40px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.2rem;
        width: 100%;
        text-align: left;
    }

    .btn-premium {
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }

    .hero-actions .btn-premium,
    .hero-actions .btn-neon-outline,
    .pricing-card .btn-premium {
        width: auto;
        margin-top: 0;
    }

    .device-showcase {
        padding: 34px 24px 28px;
    }

    .showcase-copy {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .showcase-copy p {
        margin: 0 auto;
    }

    .flix-feature {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .flix-card {
        max-width: 360px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 140px 0 60px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .pricing-card.featured {
        transform: scale(1) !important;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        gap: 14px;
    }

    .hero-actions .btn-premium,
    .hero-actions .btn-neon-outline {
        width: 100%;
        padding-left: 28px;
        padding-right: 28px;
    }

    .device-showcase-section {
        padding-bottom: 50px;
    }

    .device-showcase {
        padding: 28px 14px 22px;
        border-radius: 22px;
    }

    .home-featured-plan {
        transform: none;
    }

    .streaming-panel {
        padding: 34px 18px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-grid .card-wide {
        grid-column: span 1;
    }

    .stats-row {
        flex-direction: column;
        gap: 24px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* --- ENTRANCE ANIMATIONS --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 123, 255, 0.2); }
    50% { box-shadow: 0 0 40px rgba(0, 123, 255, 0.4); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes scrollDown {
    0% { opacity: 0; transform: translateY(-8px); }
    50% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(8px); }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- EXPANDED COLOR PALETTE --- */
:root {
    --accent-speed: #00f2fe;
    --accent-security: #7c3aed;
    --accent-streaming: #f43f5e;
    --accent-success: #10b981;
    --surface-elevated: rgba(255, 255, 255, 0.06);
}

.icon-box.speed { background: rgba(0, 242, 254, 0.1); color: var(--accent-speed); }
.icon-box.security { background: rgba(124, 58, 237, 0.1); color: var(--accent-security); }
.icon-box.streaming { background: rgba(244, 63, 94, 0.1); color: var(--accent-streaming); }
.icon-box.privacy { background: rgba(16, 185, 129, 0.1); color: var(--accent-success); }

/* --- SCROLL INDICATOR --- */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    color: var(--text-dim);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-indicator i {
    animation: scrollDown 1.8s ease-in-out infinite;
    font-size: 1.2rem;
}

/* --- STATS ROW --- */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    background: var(--accent-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- SOCIAL PROOF / TESTIMONIALS --- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    border-color: rgba(0, 123, 255, 0.2);
    transform: translateY(-4px);
}

.testimonial-card .stars {
    color: #facc15;
    font-size: 0.9rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card .quote {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card .author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
}

.testimonial-card .author-name {
    font-weight: 700;
    font-size: 0.95rem;
}

.testimonial-card .author-role {
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* --- TRUST BADGES --- */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 48px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--text-dim);
    transition: all 0.3s ease;
}

.trust-badge i {
    color: var(--accent-success);
    font-size: 1rem;
}

.trust-badge:hover {
    border-color: var(--accent-success);
    background: rgba(16, 185, 129, 0.05);
}

/* --- BENTO GRID --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bento-grid .card-wide {
    grid-column: span 2;
}

@media (max-width: 991px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-grid .card-wide {
        grid-column: span 2;
    }
}

/* --- NAV OVERLAY --- */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* --- DEVICE SECTION ENHANCED --- */
.device-icon {
    transition: transform 0.3s ease;
}

.device-icon:hover {
    transform: translateY(-4px);
}

.device-icon i {
    transition: filter 0.3s ease;
}

.device-icon:hover i {
    filter: brightness(1.3);
}

/* --- FOOTER CLASSES (moved from inline) --- */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p,
.footer-bottom a {
    color: var(--text-dim);
    font-size: 0.85rem;
}

/* --- NAV LINK HOVER --- */
.nav-link:hover {
    color: #fff;
}

.premium-home-section {
    position: relative;
}

.home-featured-plan {
    display: flex;
    flex-direction: column;
    border-color: var(--primary);
    transform: scale(1.05);
    z-index: 10;
    background: rgba(0, 123, 255, 0.03);
}

.popular-tag {
    position: absolute;
    top: 15px;
    right: 20px;
    background: var(--primary);
    font-size: 0.7rem;
    padding: 5px 15px;
    border-radius: 100px;
    font-weight: 800;
    letter-spacing: 1px;
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
    padding: 0;
    flex: 1;
}

.pricing-features li {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.pricing-features i {
    color: var(--primary);
    margin-right: 10px;
}

.pricing-features.highlighted i {
    color: var(--secondary);
}

.streaming-panel {
    padding: 48px 40px;
    background: rgba(0, 123, 255, 0.04);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
}

.flix-feature {
    display: grid;
    grid-template-columns: minmax(220px, 330px) minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    max-width: 860px;
    margin: 0 auto 34px;
    text-align: left;
}

.flix-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 16px;
    align-items: center;
    padding: 22px;
    border-radius: 18px;
    border: 1px solid rgba(0, 242, 254, 0.35);
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.12), rgba(124, 58, 237, 0.14));
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22), 0 0 28px rgba(0, 242, 254, 0.08);
}

.flix-icon {
    width: 58px;
    height: 58px;
    object-fit: contain;
    display: block;
    grid-row: 1 / span 2;
    margin-bottom: 0;
    filter: drop-shadow(0 0 18px rgba(0, 242, 254, 0.28));
}

.flix-logo {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.flix-badge {
    display: inline-block;
    margin-top: 8px;
    color: var(--secondary);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
}

.flix-feature p {
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.7;
}

.streaming-logo-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.country-flag-row {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    color: var(--text-dim);
    font-size: 0.9rem;
}

.country-flag-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.country-flag-row img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.future-card {
    border-radius: 18px;
    border-color: rgba(255, 255, 255, 0.12);
}

.future-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.future-card-head .icon-box {
    margin-bottom: 28px;
}

@media (max-width: 991px) {
    .hero-actions .btn-premium,
    .hero-actions .btn-neon-outline,
    .pricing-card .btn-premium {
        width: auto;
        margin-top: 0;
    }

    .flix-feature {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .flix-card {
        max-width: 360px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-actions .btn-premium,
    .hero-actions .btn-neon-outline {
        width: 100%;
    }

    .home-featured-plan {
        transform: none;
    }

    .streaming-panel {
        padding: 34px 18px;
    }
}

/* --- FEEDBACK PORTAL STYLES --- */
.feedback-hero {
    padding-bottom: 40px;
}

.category-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.category-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 24px;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--surface-grad);
    opacity: 0.3;
    z-index: 0;
}

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

.category-card .category-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.category-card h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 8px;
}

.category-card p {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 25px -5px rgba(0, 123, 255, 0.25);
    background: rgba(25, 25, 25, 0.7);
}

.category-card:hover .category-icon {
    transform: scale(1.15);
}

/* Feedback Layout Grid */
.feedback-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 60px;
}

@media (max-width: 991px) {
    .feedback-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Modern Dark Form Styling */
.feedback-form-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 24px;
    position: relative;
}

.feedback-form-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--surface-grad);
    opacity: 0.3;
}

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

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dim);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: #fff;
    outline: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-family: inherit;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.15);
}

.form-select option {
    background-color: #0d0d0d;
    color: #fff;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Voting List Section */
.voting-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.voting-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
    max-height: 520px;
    overflow-y: auto;
    padding-right: 5px;
}

/* Custom scrollbar for voting list */
.voting-list::-webkit-scrollbar {
    width: 6px;
}
.voting-list::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
}
.voting-list::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}
.voting-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.2);
}

.voting-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.voting-item:hover {
    border-color: rgba(0, 123, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.voting-item-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.voting-item-icon {
    font-size: 1.3rem;
}

.voting-item-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}

.voting-item-details span {
    font-size: 0.75rem;
    color: var(--text-dim);
}

.voting-item-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.vote-count {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--secondary);
    background: rgba(0, 242, 254, 0.08);
    padding: 4px 10px;
    border-radius: 8px;
    border: 1px solid rgba(0, 242, 254, 0.15);
}

.vote-btn {
    background: rgba(0, 123, 255, 0.15);
    border: 1px solid rgba(0, 123, 255, 0.25);
    color: var(--primary);
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vote-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px -3px var(--primary-glow);
}

.vote-btn.voted {
    background: rgba(16, 185, 129, 0.15) !important;
    border-color: rgba(16, 185, 129, 0.3) !important;
    color: #10b981 !important;
    cursor: default;
    transform: none !important;
    box-shadow: none !important;
}

/* RoadMap / Coming Soon Section */
.roadmap-section {
    padding: 60px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 123, 255, 0.02) 100%);
    border-top: 1px solid var(--glass-border);
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.roadmap-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 24px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.roadmap-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.roadmap-badge.soon {
    background: rgba(234, 179, 8, 0.1);
    color: #eab308;
    border: 1px solid rgba(234, 179, 8, 0.2);
}

.roadmap-badge.next {
    background: rgba(0, 123, 255, 0.1);
    color: var(--primary);
    border: 1px solid rgba(0, 123, 255, 0.2);
}

.roadmap-card h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 6px;
    margin-top: 15px;
}

.roadmap-card span {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.roadmap-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

/* AJAX Response Message Style */
.feedback-alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: fadeIn 0.4s ease;
}

.feedback-alert.success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.feedback-alert.error {
    background: rgba(244, 63, 94, 0.1);
    color: #f43f5e;
    border: 1px solid rgba(244, 63, 94, 0.2);
}

/* Admin Dashboard styles */
.admin-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 24px;
    margin-bottom: 50px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 20px;
}

.admin-table-container {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.admin-table th {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-dim);
    border-bottom: 1px solid var(--glass-border);
    padding: 16px;
    letter-spacing: 0.5px;
}

.admin-table td {
    padding: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.95rem;
}

.admin-table tr:hover td {
    background: rgba(255,255,255,0.02);
}

.admin-delete-btn {
    background: rgba(244, 63, 94, 0.15);
    border: 1px solid rgba(244, 63, 94, 0.25);
    color: #f43f5e;
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.admin-delete-btn:hover {
    background: #f43f5e;
    color: #fff;
}
