:root {
    /* Cinematic Live Streaming Portal Palette */
    --bg-void: #020408;
    --surface-low: #0a0d14;
    --surface-mid: #121826;
    --accent-vibrant: #7c3aed; 
    --accent-secondary: #db2777; 
    --accent-glow: linear-gradient(135deg, #7c3aed, #db2777);
    --text-high: #ffffff;
    --text-low: #94a3b8;
    
    /* Action-Oriented Typography */
    --font-display: 'Outfit', sans-serif;
    --font-base: 'Hanken Grotesk', sans-serif;
}

body {
    background-color: var(--bg-void);
    color: var(--text-high);
    font-family: var(--font-base);
    margin: 0;
    overflow-x: hidden;
}

/* Texture Overlay */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: url(https://grainy-gradients.vercel.app/noise.svg);
    opacity: 0.1;
    pointer-events: none;
    z-index: 9999;
}

/* Floating Particles Base */
.parallax-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    animation: float-blob 20s infinite alternate;
}

@keyframes float-blob {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-100px) translateX(50px); }
}

/* ==========================================================================
   ULTRA-ELITE STREAMING CARDS (UNIFIED)
   ========================================================================== */

.stream-card, .elite-card {
    background: rgba(13, 16, 24, 0.4);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    padding: 40px;
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.stream-card::before, .elite-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(124, 58, 237, 0.05), transparent 60%);
    pointer-events: none;
}

.stream-card:hover, .elite-card:hover {
    background: rgba(13, 16, 24, 0.6);
    border-color: rgba(124, 58, 237, 0.4);
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 40px 90px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(124, 58, 237, 0.15);
}

.stream-card:hover::after, .elite-card:hover::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 42px;
    background: linear-gradient(135deg, transparent, rgba(124, 58, 237, 0.3), transparent);
    z-index: -1;
    animation: neon-trace 3s infinite linear;
}

@keyframes neon-trace {
    0% { filter: blur(10px) opacity(0); }
    50% { filter: blur(15px) opacity(1); }
    100% { filter: blur(10px) opacity(0); }
}

/* Ultra-Modern Hero Styling */
.portal-hero {
    padding: 110px 0 140px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Cinematic Scanline Sweep */
.portal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 20%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.05), transparent);
    transform: skewX(-30deg);
    animation: scanline 8s infinite linear;
    z-index: 1;
}

@keyframes scanline {
    0% { left: -100%; }
    100% { left: 200%; }
}

.title-display {
    font-family: var(--font-display);
    font-size: clamp(48px, 12vw, 140px);
    font-weight: 900;
    font-style: normal;
    line-height: 0.85;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 32px;
    animation: title-entrance 1.2s cubic-bezier(0.16, 1, 0.3, 1), title-glitch 5s infinite;
    position: relative;
    z-index: 2;
}

@keyframes title-glitch {
    0%, 95%, 100% { transform: skewX(0); filter: none; }
    96% { transform: skewX(10deg); filter: drop-shadow(2px 0 red) drop-shadow(-2px 0 blue); }
    97% { transform: skewX(-10deg); filter: drop-shadow(-2px 0 red) drop-shadow(2px 0 blue); }
    98% { transform: skewX(5deg); opacity: 0.8; }
}

@keyframes title-entrance {
    from { opacity: 0; transform: translateY(50px) skewY(5deg); }
    to { opacity: 1; transform: translateY(0) skewY(0); }
}

.text-vibrant {
    background: var(--accent-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(124, 58, 237, 0.5));
}

/* Unified Elite Button System */
.btn-portal {
    background: var(--accent-glow);
    color: white;
    padding: 16px 32px;
    border-radius: 14px;
    font-weight: 800;
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(124, 58, 237, 0.4);
    white-space: nowrap;
}

.btn-hero {
    padding: 22px 56px;
    font-size: 18px;
    min-width: 280px;
    border-radius: 20px;
}

.hero-actions-wrap {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

@keyframes btn-subtle-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 10px 30px -10px rgba(124, 58, 237, 0.5); }
    50% { transform: scale(1.02); box-shadow: 0 15px 40px -5px rgba(124, 58, 237, 0.6); }
}

.btn-portal span {
    position: relative;
    z-index: 2;
}

.btn-portal i {
    font-size: 20px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
}

/* Shimmer Sweep Animation */
.btn-portal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: none;
    z-index: 1;
}

.btn-portal:hover::before {
    left: 100%;
    transition: left 0.6s ease-in-out;
}

/* Glow Bloom */
.btn-portal::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-glow);
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn-portal:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(124, 58, 237, 0.7);
    border-color: rgba(255, 255, 255, 0.4);
    animation: none; /* Pause pulse on hover */
}

.btn-portal:hover i {
    transform: translateX(6px) scale(1.2) rotate(-10deg);
}

.btn-portal:hover::after {
    opacity: 0.6;
}

.btn-portal:active {
    transform: translateY(-2px) scale(0.96);
    transition: all 0.1s ease;
}

/* Secondary Version with Inner Glow */
.btn-portal-outline {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: white;
    animation: none; /* No pulse for secondary */
    box-shadow: none;
}

.btn-portal-outline::before {
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
}

.btn-portal-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.btn-portal-outline:hover i {
    transform: translateX(4px);
}

/* Live Badge with Pulse */
.badge-live {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    padding: 8px 18px;
    border-radius: 99px;
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
}

.live-pulse {
    width: 10px;
    height: 10px;
    background: #ef4444;
    border-radius: 50%;
    position: relative;
}

.live-pulse::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: #ef4444;
    border-radius: 50%;
    animation: badge-pulse 1.5s infinite;
}

@keyframes badge-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* Pricing Section */
.price-display {
    font-family: var(--font-display);
    font-size: 96px;
    font-weight: 900;
    font-style: normal;
    line-height: 0.9;
    letter-spacing: -0.05em;
    margin: 24px 0;
}

/* Ultra-Premium OLED Metrics */
.metrics-bridge {
    padding: 120px 0;
    background: #000000; /* Deep OLED Black */
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.metric-card {
    background: linear-gradient(145deg, rgba(15, 15, 20, 0.6) 0%, rgba(5, 5, 10, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 56px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(20px);
}

.metric-card:hover {
    background: rgba(20, 20, 25, 0.9);
    border-color: rgba(124, 58, 237, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(124, 58, 237, 0.05);
}

/* Neon Border Tracing Effect */
.metric-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.metric-card:hover::before {
    opacity: 1;
}

.metric-icon {
    font-size: 32px;
    color: var(--accent-vibrant);
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 10px rgba(124, 58, 237, 0.3));
}

.metric-card:hover .metric-icon {
    transform: scale(1.2);
    filter: drop-shadow(0 0 20px rgba(124, 58, 237, 0.6));
}

.metric-value {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 900;
    font-style: normal;
    color: var(--text-high);
    margin-bottom: 4px;
    line-height: 1;
    letter-spacing: -3px;
    transition: all 0.4s ease;
}

.metric-card:hover .metric-value {
    letter-spacing: -1px;
    color: var(--accent-vibrant);
}

.metric-label {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 6px;
    letter-spacing: 3px;
    color: var(--text-low);
}

.metric-sub {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metric-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.metric-card:hover .metric-glow {
    opacity: 1;
}

/* Global Container Fix */
.container { 
    max-width: 1440px; 
    margin-left: auto; 
    margin-right: auto; 
    padding: 0 40px; 
}

/* Parallax Elements */
.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
/* Cinematic Parallax Feature Portal - Compact Row Style */
.feature-portal-parallax {
    position: relative;
    padding: 100px 0;
    min-height: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000;
}

.parallax-backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.parallax-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: brightness(0.6) desaturate(0.5) blur(2px);
    transition: transform 0.5s ease-out;
    transform: scale(1.1);
}

.feature-portal-parallax:hover .parallax-img {
    transform: scale(1.15);
}

.backdrop-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        #000000 0%,
        rgba(0,0,0,0.4) 50%,
        #000000 100%
    );
    z-index: 1;
}

.portal-content-wrap {
    position: relative;
    z-index: 2;
}

.portal-info-centered {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.portal-title-large {
    font-size: clamp(50px, 8.5vw, 100px);
    line-height: 0.9;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.portal-desc-centered {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 800px;
    margin: 0 auto 48px;
    line-height: 1.5;
}

.portal-features-grid-centered {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
}

.feature-chip-premium {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 32px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    flex: 1;
    max-width: 250px;
}

.feature-chip-premium span {
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.feature-chip-premium:hover {
    background: rgba(124, 58, 237, 0.15);
    border-color: var(--accent-vibrant);
    transform: translateY(-8px) scale(1.03);
}

.feature-chip-premium .chip-icon {
    font-size: 20px;
    color: var(--accent-vibrant);
}

@media (max-width: 1200px) {
    .portal-features-grid-centered {
        flex-wrap: wrap;
        gap: 16px;
    }
    .feature-chip-premium {
        max-width: 45%;
    }
}

@media (max-width: 768px) {
    .feature-portal-parallax {
        padding: 80px 0;
    }
    .feature-chip-premium {
        max-width: 100%;
    }
}

/* Hyper-Conversion Elite Pricing */
.pricing-portal {
    padding: 160px 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.title-display-mega {
    font-family: var(--font-display);
    font-size: clamp(64px, 12vw, 120px);
    font-weight: 1000;
    font-style: normal;
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: -4px;
    line-height: 0.85;
    color: var(--text-high);
}

.header-sub-premium {
    text-align: center;
    font-size: 22px;
    color: var(--text-low);
    max-width: 700px;
    margin: 0 auto 100px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Refined Pricing - Smaller & Straight Fonts */
.stream-card {
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 48px 32px;
    position: relative;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    z-index: 1;
    height: 100%;
}

.stream-card.is-premium {
    background: linear-gradient(180deg, rgba(20, 15, 30, 0.9) 0%, rgba(10, 10, 15, 0.9) 100%);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 0 50px rgba(124, 58, 237, 0.1);
}

.tier-label {
    color: var(--accent-vibrant);
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    text-align: center;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.elite-card.is-premium {
    background: linear-gradient(180deg, rgba(20, 15, 30, 0.9) 0%, rgba(10, 10, 15, 0.9) 100%);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.1);
}

.card-badge-glow {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-glow);
    padding: 8px 20px;
    border-radius: 99px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    color: white;
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.4);
    z-index: 3;
}

.card-price-wrap .currency {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-vibrant);
    margin-right: 4px;
}

.card-price-wrap .period {
    font-size: 16px;
    color: var(--text-low);
    opacity: 0.6;
}

.feature-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    margin: 32px 0;
}

.elite-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.8);
}

.package-name {
    font-family: var(--font-display);
    font-size: 32px; /* Smaller */
    font-weight: 900;
    font-style: normal; /* No Italics */
    color: var(--text-high);
    margin-bottom: 6px;
    text-align: center;
}

.amount {
    font-family: var(--font-display);
    font-size: 64px; /* Reduced from 96px */
    font-weight: 1000;
    font-style: normal; /* No Italics */
    line-height: 1;
    color: var(--text-high);
    letter-spacing: -2px;
    filter: drop-shadow(0 0 10px rgba(124, 58, 237, 0.2));
}

.card-price-wrap {
    margin-bottom: 40px; /* Tighter */
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 2px;
}

.connection-limit {
    color: var(--text-low);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 32px;
    text-align: center;
    opacity: 0.5;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 48px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    font-size: 14px;
    color: var(--text-low);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.feature-item i {
    color: var(--accent-vibrant);
    font-size: 18px;
    filter: drop-shadow(0 0 10px rgba(124, 58, 237, 0.3));
}

.card-action .btn-portal {
    padding: 20px;
    font-size: 15px;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .title-display-mega {
        font-size: 60px;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .elite-card {
        padding: 40px 32px;
    }
}

/* ==========================================================================
   CINEMATIC FOOTER ECOSYSTEM
   ========================================================================== */

.pre-footer {
    padding: 100px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: radial-gradient(circle at top right, rgba(124, 58, 237, 0.05), transparent 40%);
}

.pre-footer-content {
    background: rgba(18, 24, 38, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(124, 58, 237, 0.1);
    color: var(--accent-vibrant);
    border-radius: 99px;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.cta-desc {
    color: var(--text-low);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

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

.footer-modern {
    background: var(--bg-void);
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(124, 58, 237, 0.05), #020408); /* Stronger solid dark base */
    pointer-events: none;
}

.footer-grid-modern {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.footer-brand-modern {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    margin-bottom: 30px;
}

.brand-box {
    width: 50px;
    height: 50px;
    background: var(--accent-glow);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
}

.brand-box i {
    color: white;
    font-size: 30px;
}

.brand-text-modern {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 32px;
    color: white;
    letter-spacing: -2px;
}

.brand-desc-modern {
    color: #cbd5e1; /* Lighter for better visibility */
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.social-cluster {
    display: flex;
    gap: 14px;
}

.social-node {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: var(--text-low);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.social-node:hover {
    background: var(--accent-glow);
    color: white;
    transform: translateY(-5px) rotate(8deg);
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
}

.hub-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    margin-bottom: 32px;
    position: relative;
    display: inline-block;
}

.hub-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 24px;
    height: 3px;
    background: var(--accent-glow);
    border-radius: 99px;
}

.hub-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hub-links li {
    margin-bottom: 16px;
}

.hub-links a {
    color: #e2e8f0; /* Much more visible link color */
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    padding-left: 0;
}

.hub-links a:hover {
    color: white;
    padding-left: 8px;
}

.hub-links a::before {
    content: '→';
    position: absolute;
    left: -10px;
    opacity: 0;
    transition: all 0.3s;
}

.hub-links a:hover::before {
    opacity: 1;
    left: -15px;
}

.contact-card-modern {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 24px;
}

.contact-item-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e2e8f0; /* Better visibility */
    text-decoration: none;
    margin-bottom: 20px;
    font-size: 14px;
    transition: color 0.3s;
}

.contact-item-modern i {
    color: var(--accent-vibrant);
    font-size: 18px;
}

.contact-item-modern:hover {
    color: white;
}

.uptime-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    font-weight: 800;
    font-size: 11px;
    color: #10b981;
    letter-spacing: 1px;
}

.uptime-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.footer-bottom-modern {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.payment-suite {
    display: flex;
    gap: 20px;
    font-size: 24px;
    color: var(--text-low);
    opacity: 0.6;
}

.payment-suite i:hover {
    color: white;
    opacity: 1;
}

.copyright-wrap p {
    color: var(--text-low);
    font-size: 13px;
    font-weight: 600;
    margin: 0;
}

.brand-text-mini {
    color: white;
    font-weight: 900;
}

.bottom-nav-modern {
    display: flex;
    gap: 24px;
}

.bottom-nav-modern a {
    color: var(--text-low);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.bottom-nav-modern a:hover {
    color: white;
}

@media (max-width: 1100px) {
    .footer-grid-modern {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid-modern {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom-modern {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   INFINITE FOOTER MARQUEE
   ========================================================================== */

/* ==========================================================================
   MEGA FOOTER MARQUEE (HIGH IMPACT)
   ========================================================================== */

.mega-footer-marquee {
    width: 100%;
    background: var(--bg-void);
    overflow: hidden;
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    user-select: none;
    z-index: 1;
}

.mega-marquee-track {
    display: flex;
    white-space: nowrap;
    animation: mega-marquee-scroll 80s linear infinite;
    width: max-content;
}

.mega-marquee-track span {
    font-family: var(--font-display);
    font-size: clamp(100px, 20vw, 320px);
    font-weight: 950;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.15); /* More visible outline */
    text-transform: uppercase;
    line-height: 0.9;
    padding-right: 120px;
    letter-spacing: -5px;
    transition: all 0.4s ease;
}

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

.mega-footer-marquee:hover .mega-marquee-track {
    animation-play-state: paused;
}

.mega-footer-marquee:hover .mega-marquee-track span {
    -webkit-text-stroke: 1.5px var(--accent-vibrant); /* Change to vibrant purple on hover */
    filter: drop-shadow(0 0 15px rgba(124, 58, 237, 0.4));
}



/* ==========================================================================
   NEBULA GLASS FLOATING HEADER
   ========================================================================== */

.header-floating-wrapper {
    position: fixed;
    top: 25px;
    left: 0;
    width: 100%;
    z-index: 2000;
    display: flex;
    justify-content: center;
    padding: 0 20px;
    pointer-events: none; /* Let clicks pass through to content if not on header */
}

.header-floating {
    pointer-events: auto;
    width: 100%;
    max-width: 1200px;
    height: 72px;
    background: transparent;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border: 1px solid transparent;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px 0 30px;
    box-shadow: none;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.header-floating.is-scrolled {
    background: rgba(10, 12, 18, 0.4);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.header-floating:hover {
    background: rgba(10, 12, 18, 0.6);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Floating Logo */
.floating-logo {
    text-decoration: none;
    margin-right: 40px;
}

/* Navigation Island */
.nav-island {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-pills {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-pills a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    letter-spacing: 0.3px;
}

.nav-pills a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.nav-pills a.active {
    color: white;
    background: rgba(124, 58, 237, 0.15);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.2);
}

/* Floating Cluster */
.floating-cluster {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-nebula-trial {
    background: linear-gradient(135deg, #7c3aed, #db2777);
    color: white;
    padding: 10px 22px;
    border-radius: 100px;
    font-weight: 900;
    font-size: 11px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3);
    transition: all 0.3s;
}

.btn-nebula-trial:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
    box-shadow: 0 15px 35px rgba(124, 58, 237, 0.5);
}

.btn-login-nebula {
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    padding: 0 15px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.btn-login-nebula:hover {
    opacity: 1;
}

/* Minimal Lang */
.lang-minimal {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-minimal:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.lang-glass-panel {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    background: rgba(15, 17, 23, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 15px;
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.lang-glass-panel.show {
    display: grid;
    animation: nebula-drop 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes nebula-drop {
    from { opacity: 0; transform: translateY(-10px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.lang-glass-panel a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 11px;
    font-weight: 900;
    padding: 8px;
    border-radius: 8px;
    text-align: center;
}

.lang-glass-panel a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

/* Nebula Toggle */
.nebula-toggle {
    background: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: none; /* Desktop hidden */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.nebula-toggle .dots {
    display: flex;
    gap: 3px;
}

.nebula-toggle span {
    width: 4px;
    height: 4px;
    background: #000;
    border-radius: 50%;
}

.nebula-toggle:hover {
    transform: rotate(90deg);
}

@media (max-width: 1100px) {
    .nav-island { display: none; }
    .nebula-toggle { display: flex; }
    .header-floating { margin: 0 10px; padding: 0 10px 0 20px; }
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: #020408;
    z-index: 3000;
    padding: 40px;
    transform: translateY(-100%);
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1), visibility 0.6s, opacity 0.6s;
}

.mobile-overlay.is-active {
    transform: translateY(0);
    visibility: visible;
    pointer-events: all;
    opacity: 1;
}

.overlay-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.overlay-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    align-items: center;
}

.close-overlay {
    background: none;
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.overlay-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.overlay-nav li {
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
}

.mobile-overlay.is-active .overlay-nav li {
    animation: fade-up 0.5s forwards calc(0.1s * var(--d));
}

@keyframes fade-up {
    to { opacity: 1; transform: translateY(0); }
}

.overlay-nav a {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 950;
    color: white;
    text-decoration: none;
    line-height: 1;
    letter-spacing: -2px;
}

.overlay-footer {
    margin-top: auto;
}

.btn-signup.full {
    display: block;
    text-align: center;
}

/* Floating Widgets System */
#coupon-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9995;
    cursor: pointer;
}

.coupon-pill {
    background: var(--accent-vibrant);
    color: white;
    padding: 10px 20px;
    border-radius: 99px;
    font-weight: 900;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.coupon-card {
    position: absolute;
    bottom: 60px;
    right: 0;
    width: 280px;
    background: #0a0a0f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

#coupon-float:hover .coupon-card {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#coupon-float:hover .coupon-pill {
    transform: translateY(-5px);
}

/* Announcement System Overhaul */
.announcement-toast {
    position: fixed;
    bottom: 40px;
    left: 40px;
    z-index: 10000;
    width: 420px;
    background: linear-gradient(165deg, rgba(20, 22, 28, 0.95) 0%, rgba(10, 11, 14, 0.98) 100%);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    transform: translateY(150%) scale(0.9);
    opacity: 0;
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.announcement-toast.show {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.toast-icon-box {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent-vibrant);
}

.toast-badge {
    background: var(--accent-vibrant);
    color: white;
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: inline-block;
}

.toast-main-text {
    font-weight: 700;
    line-height: 1.5;
    color: white;
    font-size: 15px;
    margin-bottom: 20px;
}

.toast-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 12px;
    color: white;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.announcement-launcher {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 56px;
    height: 56px;
    background: var(--accent-vibrant);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.announcement-launcher.hidden {
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
}
