* {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}

:root {
    --primary: #007AFF;
    --primary-dark: #0056b3;
    --secondary: #FF9500;
    --background: #ffffff;
    --text-main: #1d1d1f;
    --text-muted: #86868b;
    --glass: rgba(255, 255, 255, 0.7);
    --card-bg: #f5f5f7;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    color: var(--text-main);
    background-color: #F8F5F0 !important; /* Subtle cream/beige background like Wishlink */
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* Global Texture Overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
    z-index: 9999;
}

/* Global Background Halos */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(79, 70, 229, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 210, 0, 0.03) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

/* Glassmorphism Navbar */
.navbar-custom {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.nav-link {
    font-weight: 500;
    color: var(--text-main) !important;
    padding: 0.5rem 1.2rem !important;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--primary) !important;
}

/* Typography Refinement */
h1, h2, h3, h4 {
    letter-spacing: -0.02em;
}

.hero-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px !important;
}

.playball-accent {
    font-family: 'Outfit', sans-serif !important;
    color: var(--secondary);
    font-size: 2.2rem;
    margin-top: -10px;
    font-weight: 700;
    display: block;
}

/* Alternating Sections */
.section-feature {
    padding: 100px 0;
}

.feature-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-image-wrapper:hover {
    transform: scale(1.02);
}

.feature-text {
    padding: 40px;
}

/* Custom Buttons */
.btn-premium {
    background-color: var(--primary);
    color: white;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.3);
}

.btn-premium:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 122, 255, 0.4);
    color: white;
}

.btn-outline-premium {
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-premium:hover {
    background-color: var(--primary);
    color: white;
}

/* Creator Badges */
.creator-badge-pro {
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    padding: 12px 20px;
    border-radius: 100px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.creator-badge-pro:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: var(--primary);
}

/* FAQ Refinement */
.faq-item-modern {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.faq-item-modern:hover {
    background: white;
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Stats Cards */
.stat-card-premium {
    background: white;
    border-radius: 24px;
    padding: 30px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.stat-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Micro-animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.hero-mockup {
    max-width: 600px;
    width: 100%;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.15));
}

/* Premium 3D Card Style */
.premium-3d-card-wrapper {
    perspective: 1200px;
    padding: 1rem;
}

.premium-3d-card {
    background: #ffffff;
    border-radius: 40px;
    padding: 2.5rem;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: rotateY(-8deg) rotateX(4deg);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: visible;
}

.premium-3d-card:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.03);
    box-shadow: 0 40px 80px rgba(0,0,0,0.12);
}

.premium-3d-card img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}

/* Social Proof Notification */
.social-proof-pop {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 12px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: fadeInUp 0.5s ease-out;
    border: 1px solid rgba(0,0,0,0.05);
}

/* LinkDM Master Clone - Halo & Phone */
.linkdm-clone-wrapper {
    position: relative;
    padding: 80px 0;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.textured-halo {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 132, 255, 0.15) 0%, rgba(0, 132, 255, 0) 70%);
    filter: blur(60px);
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.halo-red { background: radial-gradient(circle, rgba(255, 59, 48, 0.15) 0%, rgba(255, 59, 48, 0) 70%); }
.halo-gold { background: radial-gradient(circle, rgba(255, 184, 0, 0.15) 0%, rgba(255, 184, 0, 0) 70%); }

.linkdm-phone-3d-card {
    width: 280px;
    height: 560px;
    background: #000;
    border-radius: 40px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.2);
    border: 10px solid #1a1a1a;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.linkdm-phone-3d-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.linkdm-floating-card {
    position: absolute;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    padding: 0; /* Content will fill */
    z-index: 3;
    border: 1px solid rgba(255,255,255,0.2);
    width: 220px;
    overflow: hidden;
    pointer-events: none;
}

.linkdm-floating-card img {
    width: 100%;
    height: auto;
    display: block;
}

.notification-badge-red {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FF3B30;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    box-shadow: 0 5px 10px rgba(255, 59, 48, 0.3);
    z-index: 10;
}

.dashed-line-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.linkdm-feature-heading {
    font-size: 2rem;
    font-weight: 800;
    color: #000000;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.linkdm-feature-text {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
}

.instagram-profile-img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-right: 10px;
    border: 1px solid #ddd;
}

/* Minimalist Grey Footer */
.footer-banner-grey {
    background-color: #f5f5f7;
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.footer-brand-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.footer-brand-tagline {
    font-family: 'Playball', cursive;
    font-size: 1.2rem;
    color: #1d1d1f;
    margin-bottom: 1.5rem;
}

.footer-link-col h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-link-col ul li {
    margin-bottom: 0.8rem;
}

.footer-link-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.95rem;
}

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

.social-icon-circle {
    width: 45px;
    height: 45px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.social-icon-circle:hover {
    transform: scale(1.1);
    color: #fff;
}

.footer-watermark {
    font-size: 15vw;
    font-weight: 900;
    color: rgba(0,0,0,0.03);
    text-align: center;
    line-height: 1;
    margin-top: 40px;
    letter-spacing: -0.05em;
    user-select: none;
    text-transform: uppercase;
}

/* Exact LinkDM Style Clone Layout */
.linkdm-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.linkdm-eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0084FF;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.linkdm-title-main {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 1.5rem;
}

.linkdm-subtitle {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 80px auto;
}

/* Card Positions */
.profile-card { top: 5%; right: -80px; }
.comment-card { bottom: 15%; right: -60px; }
.inbox-card { top: 30%; right: -90px; }
.ad-card { bottom: 20%; left: -90px; }

/* Sleek Stats Cards */
.stats-container {
    max-width: 1000px;
    margin: 0 auto;
}

.stats-glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 25px 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.stats-glass-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.stats-glass-card.primary-card {
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.2);
}

.stats-glass-card .stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.stats-glass-card .stat-label {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Mobile Optimizations (Android & iOS) */
@media (max-width: 768px) {
    /* Prevent horizontal scroll issues from floating absolute elements */
    body {
        overflow-x: hidden;
    }

    /* LinkDM Feature Section Mobile */
    .linkdm-clone-wrapper {
        padding: 40px 0;
        margin-bottom: 2rem;
    }
    
    .linkdm-phone-3d-card {
        width: 220px;
        height: 440px;
    }

    /* Pull floating cards inward and scale them down */
    .linkdm-floating-card {
        width: 180px;
    }
    .profile-card { right: -10px; top: -5%; }
    .comment-card { right: -5px; bottom: 5%; }
    .inbox-card { right: -10px; top: 10%; }
    .ad-card { left: -10px; bottom: 5%; }

    /* Center text on mobile */
    .linkdm-feature-heading {
        font-size: 2rem;
        text-align: center;
        margin-top: 1.5rem;
    }
    .linkdm-feature-text {
        text-align: center;
        font-size: 1rem;
    }

    /* Premium 3D Card wrappers */
    .premium-3d-card-wrapper {
        margin: 0 auto 2rem auto;
    }

    /* Dynamic Social Proof Mobile */
    .social-proof {
        left: 5% !important;
        right: 5% !important;
        width: 90% !important;
        min-width: auto !important;
        bottom: 10px !important;
    }

    /* Stats Section */
    .stats-container {
        padding: 0 15px;
    }
    .stats-glass-card .stat-number {
        font-size: 1.8rem;
    }

    /* Footer */
    .footer-banner-grey {
        padding: 50px 0 20px 0;
        text-align: center;
    }
    .footer-brand-title {
        font-size: 2rem;
    }
    .footer-link-col {
        margin-top: 2rem;
    }
    .social-icon-circle {
        margin: 0 auto;
    }
    .d-flex.gap-3 {
        justify-content: center;
    }
}


/* Royal Blue & Yellow Theme */
:root {
    --royal-blue: #0052FF;
    --royal-blue-dark: #003EB3;
    --royal-black: #1A1A1A;
    --royal-white: #FFFFFF;
    --royal-yellow: #FFD200;
    --royal-blue-accent: #EBF2FF;
}

body, html {
    background-color: var(--royal-white) !important;
    color: var(--royal-black);
    font-family: 'Outfit', sans-serif !important;
    position: relative;
}

/* Milder Atmospheric Glow (Bluish) */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 82, 255, 0.02), rgba(0, 132, 255, 0.01));
    pointer-events: none;
    z-index: 1000;
}

/* Eliminate all white backgrounds FORCED but with milder tint */
section, 
footer,
.footer, 
.bg-white, 
.bg-light,
.container-fluid, 
.mega-menu, 
.sidebar-body,
.card,
.modal-content,
.dropdown-menu,
.footer-wishlink-card {
    background-color: var(--royal-white) !important;
    border-color: rgba(0, 82, 255, 0.08) !important;
}

.section-wishlink-hero {
    background-color: #FFF5F7 !important; /* Soft pinkish background */
    background-image: url('../assets/frontend/images/hero_confetti_bg.png') !important;
    background-size: cover !important;
    background-position: center !important;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.text-gradient-pink {
    color: #FF4D6D !important;
}

.text-gradient-blue {
    background: linear-gradient(90deg, #4D96FF 0%, #0052FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-content-wishlink h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    color: #1A1A1A;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}

.hero-content-wishlink h1 .sub-heading {
    display: block;
    font-size: 2.8rem;
    margin-top: 10px;
}

.hero-content-wishlink p {
    font-family: 'Outfit', sans-serif !important;
    font-size: 1rem;
    color: #444;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
    opacity: 0.9;
}

.hero-content-wishlink p span.underline {
    border-bottom: 3px solid rgba(0, 82, 255, 0.2);
    padding-bottom: 2px;
}

/* Premium Glowing Buttons */
.hero-btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 4rem;
}

.btn-glowing-dark {
    background: #0F172A !important;
    color: #FFFFFF !important;
    padding: 14px 32px !important;
    border-radius: 100px !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    text-decoration: none !important;
    position: relative;
    z-index: 1;
    border: 3px solid transparent !important;
    transition: all 0.3s ease !important;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.3) !important;
}

.btn-glowing-dark::before {
    content: '';
    position: absolute;
    top: -3px; left: -3px; right: -3px; bottom: -3px;
    background: linear-gradient(45deg, #FF4D6D, #4D96FF);
    border-radius: 100px;
    z-index: -1;
    opacity: 0.8;
}

.btn-glowing-dark:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.4) !important;
}

.btn-glowing-outline {
    background: #FFFFFF !important;
    color: #1A1A1A !important;
    padding: 14px 32px !important;
    border-radius: 100px !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    text-decoration: none !important;
    position: relative;
    z-index: 1;
    border: 3px solid transparent !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

.btn-glowing-outline::before {
    content: '';
    position: absolute;
    top: -3px; left: -3px; right: -3px; bottom: -3px;
    background: linear-gradient(45deg, #4D96FF, #FF4D6D);
    border-radius: 100px;
    z-index: -1;
    opacity: 0.6;
}

.btn-glowing-outline:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1) !important;
}

/* Social Proof List */
.social-proof-hero {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    color: #1A1A1A;
}

.proof-item i {
    color: #000;
    font-size: 1.2rem;
}

.rating-box {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #F8F9FA;
    padding: 5px 12px;
    border-radius: 8px;
}

.stars-container {
    display: flex;
    gap: 2px;
}

.star-box {
    width: 20px;
    height: 20px;
    background: #4CC17E;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    border-radius: 2px;
}

.star-box.half {
    background: linear-gradient(90deg, #4CC17E 70%, #D1D5DB 70%);
}


/* --- PREMIUM ANNOUNCEMENT BAR --- */
.announcement-bar-wishlink {
    background: var(--royal-yellow) !important; 
    background: linear-gradient(90deg, var(--royal-yellow) 0%, #FFB800 100%) !important;
    position: relative !important;
    z-index: 1001 !important;
    box-shadow: 0 4px 25px rgba(255, 210, 0, 0.25) !important;
    min-height: 55px !important; /* Slightly taller */
    display: flex !important;
    align-items: center !important;
    border-bottom: 1px solid rgba(0,0,0,0.05) !important;
}

.announcement-bar-wishlink p {
    font-size: 1.05rem !important; /* Larger text */
    letter-spacing: 0.3px !important;
    color: #000000 !important; 
    text-shadow: none !important;
    width: 100%;
    font-weight: 700 !important; /* Bolder */
}

.announcement-badge {
    background: #ffffff !important;
    color: #000000 !important;
    padding: 4px 12px !important; /* Slightly larger padding */
    border-radius: 8px !important;
    font-size: 0.75rem !important;
    font-weight: 900 !important;
    border: 1px solid rgba(0,0,0,0.1) !important;
    margin-right: 12px !important;
}

.socialyt-logo-script {
    font-family: 'Caveat', cursive !important;
    font-size: 2.4rem !important; /* Larger for navbar */
    color: var(--royal-blue) !important; /* Bold Brand Blue */
    font-weight: 700 !important;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.02) !important;
    display: inline-block !important;
    line-height: 1;
    transition: transform 0.3s ease !important;
}

.socialyt-logo-script:hover {
    transform: rotate(-2deg) scale(1.05);
}

.header-wishlink {
    position: absolute !important;
    top: 45px !important; /* Offset for announcement bar */
    left: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 20px 0 !important;
}

.header-wishlink .navbar {
    background: transparent !important;
    border: none !important;
}

.nav-link-wishlink {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
    font-size: 1.05rem !important;
    color: #1A1A1A !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    padding: 10px 18px !important;
}

.nav-link-wishlink:hover {
    color: var(--royal-blue) !important;
    transform: translateY(-1px);
}

.active-pill {
    background: var(--royal-yellow) !important;
    border-radius: 14px !important;
    padding: 12px 28px !important;
    color: #000 !important;
    box-shadow: 0 6px 15px rgba(255, 210, 0, 0.2) !important;
    font-weight: 700 !important;
}

.get-started-btn-wishlink {
    background: var(--royal-blue) !important;
    color: #FFFFFF !important;
    padding: 14px 32px !important;
    border-radius: 50px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1) !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    border: none !important;
    display: inline-block !important;
}

.get-started-btn-wishlink:hover {
    transform: scale(1.05) translateY(-2px) !important;
    box-shadow: 0 18px 40px rgba(0,0,0,0.15) !important;
}

/* Sticky Navbar Override */
.header.sticky, .header-wishlink.sticky {
    background: var(--royal-white) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
    padding: 15px 0 !important;
    border: none !important;
}


/* Removed old hero styles */

/* Floating Action Bar */
.floating-signup-bar {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    background: #ffffff;
    border-radius: 100px;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 15px 45px rgba(0,0,0,0.08);
    z-index: 1000;
    border: 1px solid rgba(0,0,0,0.03);
}

.floating-bar-text {
    font-family: 'Outfit', sans-serif !important;
    font-size: 1.2rem;
    color: var(--royal-blue);
    font-weight: 700;
}

.floating-bar-btns {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-signup-wishlink {
    background: linear-gradient(90deg, var(--royal-blue) 0%, var(--royal-blue-dark) 100%);
    color: white;
    padding: 14px 40px;
    border-radius: 100px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    text-decoration: none;
}

.btn-signup-wishlink:hover {
    transform: scale(1.03) translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 82, 255, 0.3);
    color: white;
}

/* Marquee Section */
.section-brand-marquee {
    background-color: var(--royal-white);
    padding: 100px 0;
    overflow: hidden;
}

.marquee-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: -0.03em;
    color: #1A1A1A;
}

.marquee-subtext {
    text-align: center;
    font-size: 1.35rem;
    color: #4A4A4A;
    margin-bottom: 60px;
    font-family: 'Outfit', sans-serif !important;
    opacity: 0.8;
}

.marquee-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.marquee-row {
    display: flex;
    gap: 20px;
    white-space: nowrap;
}

.marquee-content {
    display: flex;
    gap: 20px;
    animation: marquee-reverse 40s linear infinite;
}

.marquee-content.reverse {
    animation: marquee 40s linear infinite;
}

.chunky-card {
    width: 260px;
    height: 260px;
    border-radius: 60px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0; /* Full bleed for creators */
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: none;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.chunky-card:hover {
    transform: scale(1.05);
    z-index: 10;
}

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

.chunky-card.logo-card {
    padding: 55px;
}

.chunky-card.logo-card img {
    object-fit: contain;
}

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

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

@media (max-width: 768px) {
    .hero-content-wishlink h1 {
        font-size: 2.2rem;
        text-align: center;
    }
    .hero-content-wishlink h1 .sub-heading {
        font-size: 2rem;
    }
    .hero-content-wishlink p {
        text-align: center;
        font-size: 1.1rem;
        margin: 0 auto 2rem auto;
    }
    .hero-btn-group {
        flex-direction: column;
        gap: 15px;
    }
    .btn-glowing-dark, .btn-glowing-outline {
        width: 100%;
        padding: 15px 20px !important;
        font-size: 1.1rem !important;
    }
    .floating-signup-bar {
        padding: 10px 20px;
    }
    .floating-bar-text {
        font-size: 1rem;
    }
    .btn-signup-wishlink {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
    .chunky-card {
        width: 150px;
        height: 150px;
        border-radius: 30px;
    }
}

/* Feature Slider Section */
.section-feature-slider {
    background-color: var(--royal-white);
    padding: 120px 0;
    position: relative;
}

.feature-slider-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.1;
    color: #1A1A1A;
}

.paint-highlight {
    background-color: var(--royal-yellow);
    padding: 0 5px;
    display: inline-block;
    line-height: 1;
    transform: rotate(-1deg);
    margin: 0 2px;
}

.feature-swiper, 
.feature-swiper *:not(.paint-highlight), 
.feature-slide-content, 
.feature-image-wrapper, 
.swiper-slide {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.paint-highlight {
    background-color: var(--royal-yellow) !important;
    padding: 0 5px;
    display: inline-block;
    line-height: 1;
    transform: rotate(-1deg);
    margin: 0 2px;
}

.feature-swiper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.feature-swiper .swiper-wrapper {
    display: flex !important;
    flex-direction: row !important;
    width: 100%;
}

.feature-swiper .swiper-slide {
    flex-shrink: 0 !important;
    width: 100% !important;
    height: auto !important;
    display: flex !important;
    justify-content: center !important;
}

.feature-slide-content {
    display: flex !important;
    align-items: center;
    gap: 60px;
    min-height: 450px;
    width: 100%;
}

.feature-image-wrapper {
    flex: 1.2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-main-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
    transition: all 0.5s ease;
}

.dual-layout .feature-main-img {
    max-width: 400px;
}

.single-layout .feature-main-img {
    max-width: 350px;
}

.feature-slide-text {
    flex: 0.8;
}

.feature-slide-text h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #1A1A1A;
}

.feature-slide-text p {
    font-family: 'Outfit', sans-serif !important;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4A4A4A;
    max-width: 450px;
}

/* Swiper Controls */
.feature-slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -30px;
    position: relative;
    z-index: 20;
}

.feature-slider-nav {
    display: flex;
    gap: 15px;
}

.slider-nav-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.slider-nav-btn:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

.feature-swiper .swiper-pagination {
    position: static;
    width: auto;
    display: flex;
    gap: 8px;
}

.feature-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #D1D5DB;
    opacity: 1;
    margin: 0 !important;
    transition: all 0.3s ease;
}

.feature-swiper .swiper-pagination-bullet-active {
    width: 35px;
    border-radius: 10px;
    background: var(--royal-blue);
}

.feature-slide-text p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
}

/* Swiper Navigation Customization */
.feature-slider-wrapper {
    position: relative;
    padding-bottom: 60px;
}

.feature-slider-nav {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

.slider-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.slider-nav-btn:hover {
    background: var(--royal-blue);
    color: white;
    border-color: var(--royal-blue);
}

@media (max-width: 991px) {
    .feature-slide-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .feature-slider-heading {
        font-size: 2.5rem;
    }
    .feature-slide-text h3 {
        font-size: 2rem;
    }
    .feature-slider-nav {
        justify-content: center;
    }
}

/* Why Socialyt Section (Vertical Carousel) */
.section-why-socialyt {
    background: linear-gradient(135deg, #8B5CF6 0%, #4338CA 100%); /* Purple-Blue Gradient */
    padding: 120px 0;
    color: #ffffff;
    overflow: hidden;
    position: relative;
}

.why-socialyt-wrapper {
    height: 600px;
    width: 100%;
}

.why-socialyt-slide {
    display: flex;
    align-items: center;
    gap: 80px;
    height: 100% !important;
    width: 100% !important;
    background: transparent !important;
}

.why-socialyt-text {
    flex: 1;
    padding-left: 60px;
    position: relative;
}

.why-socialyt-text h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    line-height: 1;
}

.step-box {
    margin-bottom: 40px;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.step-box h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
}

.step-box p {
    font-family: 'Outfit', sans-serif !important;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
    max-width: 450px;
}

.why-socialyt-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.why-socialyt-phone-mockup {
    width: 320px;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.2));
}

/* Floating Card Adjustments for Vertical Slider */
.why-socialyt-slide .linkdm-floating-card {
    width: 190px !important;
}

.why-socialyt-slide .profile-card { 
    top: 5% !important; 
    right: -100px !important; 
}

.why-socialyt-slide .inbox-card { 
    top: 15% !important; 
    right: -110px !important; 
}

.why-socialyt-slide .ad-card { 
    bottom: 10% !important; 
    left: -110px !important; 
}

.why-socialyt-image {
    flex: 1.2;
    display: flex;
    justify-content: center;
    position: relative;
    padding-right: 120px; /* Space for floating cards */
}

.why-socialyt-slide .linkdm-phone-3d-card {
    width: 260px !important;
    height: 520px !important;
}

.why-socialyt-slide .textured-halo {
    width: 350px !important;
    height: 350px !important;
}

.why-socialyt-pagination.swiper-pagination-bullets {
    right: 40px !important;
    left: auto !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: auto !important;
}

/* Vertical Pagination Dots */
.why-socialyt-pagination {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.why-socialyt-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.3);
    opacity: 1;
    margin: 0 !important;
}

.why-socialyt-pagination .swiper-pagination-bullet-active {
    background: #fff;
    height: 30px;
    border-radius: 10px;
}
