/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html, h1, h2, h3, h4, h5, h6, p, div, span, a, button, input {
    font-family: 'Helvetica', 'Helvetica Neue', 'Arial', sans-serif !important;
}

/* Preserve FontAwesome icons */
.fa, .fas, .far, .fab, .fal, .fad, i[class*="fa-"] {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: auto;
}

:root {
    /* Social Feeder Brand Colors */
    --plex-blue: #094AA4;
    --plex-yellow: #094AA4;
    --plex-white: #FFFFFF;
    --clean-white: #FAFAFA;
    --graphite-gray: #263238;
    
    /* Additional colors */
    --light-gray: #f8f9fa;
    --border-light: #e9ecef;
    --text-dark: #212529;
    --text-muted: #6c757d;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-blue: rgba(41, 121, 255, 0.2);
    --shadow-yellow: rgba(255, 214, 0, 0.2);
    
    /* Solid colors replacing gradients */
    --gradient-primary: var(--plex-blue);
    --gradient-accent: var(--plex-yellow);
    --gradient-mixed: var(--plex-blue);
    
    /* Legacy mappings for existing code */
    --primary-color: var(--plex-blue);
    --primary-dark: #1565C0;
    --secondary-color: var(--plex-yellow);
    --background: var(--clean-white);
    --surface: var(--light-gray);
    --text-primary: var(--text-dark);
    --text-secondary: var(--text-muted);
    --border: var(--border-light);
    --shadow: 0 4px 6px -1px var(--shadow-light);
    --shadow-lg: 0 10px 15px -3px var(--shadow-light);
    --radius: 10px;
    --font-family: 'Helvetica', 'Helvetica Neue', 'Arial', sans-serif;
    --sf-font-family: 'Helvetica', 'Helvetica Neue', 'Arial', sans-serif;
}

body {
    font-family: 'Helvetica', 'Helvetica Neue', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    max-width: 100vw;
}

/* Keep Inter font only for device mockup screens */
.dashboard-content,
.dashboard-content *,
.youtube-mockup,
.youtube-mockup *,
.plex-app-interface,
.plex-app-interface *,
.sf-app-interface,
.sf-app-interface * {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

/* Logo classes for both plex and sf */
.plex-logo,
.sf-logo {
    color: #094AA4;
    font-weight: bold;
    font-size: 18px;
}

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

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(255, 255, 255, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #094AA4;
    text-decoration: none;
    text-shadow: none;
    transition: all 0.3s;
    margin-left: 8px;
}

.logo-image {
    height: 38px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-logo a {
    text-decoration: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #094AA4;
    font-weight: 500;
    transition: all 0.3s;
    text-shadow: none;
}

.nav-link:hover {
    color: #1565C0;
    text-shadow: none;
}

.cta-nav-btn {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    border: none;
    outline: none;
    cursor: pointer;
}

.cta-nav-btn:hover {
    background: var(--primary-dark);
}

/* Hero Section */
.hero {
    background: #ffffff;
    color: #094AA4;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    font-family: var(--sf-font-family);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 200%;
    height: 200%;
    background: transparent;
    pointer-events: none;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-shape {
    display: none !important;
}

.floating-shape:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    background: rgba(255, 214, 0, 0.2); /* Energy Yellow with moderate transparency */
}

.floating-shape:nth-child(2) {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    background: rgba(0, 200, 83, 0.2); /* Money Green with moderate transparency */
}

.floating-shape:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 30%;
    right: 30%;
    animation-delay: 4s;
    background: rgba(41, 121, 255, 0.2); /* Trust Blue with moderate transparency */
}

.floating-youtube-icon {
    display: none !important;
}

.floating-play-button {
    display: none !important;
}

.floating-subscribers {
    display: none !important;
}

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-brand {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #094AA4;
    line-height: 1.2;
    text-align: center !important;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #094AA4;
    line-height: 1.4;
    text-align: left;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.6;
    text-align: left;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.hero-demo {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    position: relative;
}

/* Devices Combo Container */
.devices-combo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 650px;
    height: 500px;
    flex-shrink: 0;
}

/* Desktop Mockup */
.desktop-mockup {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    animation: floatDesktop 6s ease-in-out infinite;
}

@keyframes floatDesktop {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
    }
    50% {
        transform: translateY(-50%) translateX(-5px);
    }
}

.desktop-frame {
    background: rgba(0, 0, 0, 0.9);
    border-radius: 12px;
    padding: 4px;
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.5),
        0 15px 35px rgba(0, 0, 0, 0.3),
        inset 0 1px 3px rgba(255, 255, 255, 0.2),
        inset 0 -1px 3px rgba(0, 0, 0, 0.3);
    width: 480px;
    height: 350px;
    transition: all 0.4s ease;
}

.desktop-frame:hover {
    transform: translateY(-5px);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.6),
        0 20px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 3px rgba(255, 255, 255, 0.25);
}

.desktop-screen {
    background: #ffffff;
    border-radius: 8px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.desktop-header {
    background: rgba(240, 240, 240, 0.98);
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.desktop-traffic-lights {
    display: flex;
    gap: 6px;
    align-items: center;
}

.traffic-light {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
}

.traffic-light.red {
    background: #ff5f56;
}

.traffic-light.yellow {
    background: #ffbd2e;
}

.traffic-light.green {
    background: #27c93f;
}

.desktop-browser-bar {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    padding: 4px 10px;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: #666;
}

.desktop-browser-bar i {
    color: var(--money-green);
    font-size: 9px;
}

/* Dashboard Content */
.dashboard-content {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.dashboard-sidebar {
    background: linear-gradient(180deg, #094AA4 0%, #1565C0 100%);
    width: 120px;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}

.sidebar-logo {
    padding: 8px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 8px;
}

.sidebar-logo .plex-logo {
    font-size: 16px;
    font-weight: 700;
    color: white;
    -webkit-text-fill-color: white;
    background: none;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu-item {
    padding: 8px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s;
    cursor: pointer;
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.menu-item.active {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    font-weight: 600;
}

.menu-item i {
    font-size: 11px;
    width: 14px;
    text-align: center;
}

.dashboard-main {
    flex: 1;
    padding: 12px;
    overflow-y: auto;
    background: #fafafa;
}

.dashboard-header-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.dashboard-header-section h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.date-range {
    font-size: 9px;
    color: var(--text-muted);
    background: white;
    padding: 4px 8px;
    border-radius: 4px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.stat-card {
    background: white;
    border-radius: 6px;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.views-icon {
    background: rgba(41, 121, 255, 0.1);
    color: var(--trust-blue);
}

.subs-icon {
    background: rgba(0, 200, 83, 0.1);
    color: var(--money-green);
}

.engagement-icon {
    background: rgba(255, 0, 100, 0.1);
    color: #ff0064;
}

.stat-info {
    flex: 1;
    min-width: 0;
}

.stat-label {
    font-size: 8px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.stat-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.stat-change {
    font-size: 8px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.stat-change.positive {
    color: var(--money-green);
}

.stat-change i {
    font-size: 7px;
}

/* Chart Section */
.chart-section {
    background: white;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.chart-header {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.chart-container {
    height: 80px;
    position: relative;
}

.growth-chart {
    width: 100%;
    height: 100%;
}

.chart-line {
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Recent Videos */
.recent-videos {
    background: white;
    border-radius: 6px;
    padding: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.section-title-small {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.video-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.video-item {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 6px;
    border-radius: 4px;
    transition: background 0.2s;
}

.video-item:hover {
    background: rgba(0, 0, 0, 0.02);
}

.video-thumb {
    width: 50px;
    height: 28px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 3px;
    flex-shrink: 0;
}

.video-details {
    flex: 1;
    min-width: 0;
}

.video-name {
    font-size: 9px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.video-stats {
    font-size: 8px;
    color: var(--text-muted);
}

/* Phone Mockup - Now positioned in front */
.phone-mockup {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    animation: floatMobile 5s ease-in-out infinite;
}

@keyframes floatMobile {
    0%, 100% {
        transform: translateY(-50%) translateY(0);
    }
    50% {
        transform: translateY(-50%) translateY(-10px);
    }
}

.phone-frame {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 40px;
    padding: 3px;
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.6),
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 3px rgba(255, 255, 255, 0.2),
        inset 0 -1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
    width: 260px;
    height: 520px;
    transition: all 0.3s ease;
}

.phone-screen {
    background: rgba(248, 249, 250, 0.98);
    border-radius: 37px;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.phone-notch {
    background: rgba(0, 0, 0, 0.95);
    width: 100px;
    height: 26px;
    border-radius: 16px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.phone-home-indicator {
    background: rgba(0, 0, 0, 0.4);
    width: 110px;
    height: 4px;
    border-radius: 2px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    backdrop-filter: blur(5px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    z-index: 100;
}

/* Plex App Interface */
.plex-app-interface {
    padding: 40px 12px 12px 12px;
    background: rgba(255, 255, 255, 0.95);
    flex-shrink: 0;
    backdrop-filter: blur(15px);
    border-bottom: none;
}

.plex-app-header {
    text-align: center;
    margin-bottom: 8px;
}

.plex-logo {
    font-size: 20px;
    font-weight: 700;
    background: var(--gradient-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.earnings-card {
    background: var(--primary-color);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    margin-bottom: 12px;
    color: white;
}

.earnings-label {
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 6px;
}

.earnings-amount {
    font-size: 22px;
    font-weight: 700;
}

.task-card {
    background: white;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.task-card.completed {
    border-color: var(--plex-yellow);
    background: rgba(0, 200, 83, 0.05);
}

.task-card.in-progress {
    border-color: #ffd600;
    background: rgba(255, 214, 0, 0.05);
}

.task-icon {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.task-content {
    flex: 1;
}

.task-title {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 2px;
}

.task-status {
    font-size: 10px;
    color: var(--text-muted);
}

.task-reward {
    font-size: 12px;
    font-weight: 700;
    color: var(--plex-yellow);
}

.youtube-mockup {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 16px 16px 0 0;
    padding: 16px;
    backdrop-filter: blur(10px);
    border: none;
    width: 100%;
    flex: 1;
    color: var(--text-primary);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    margin: 0;
}

.phone-frame:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.5),
        0 15px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.15);
}

.youtube-thumbnail {
    background: #ff0000;
    aspect-ratio: 16/9;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    margin-top: 4px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    flex-shrink: 0;
}

.play-button {
    background: rgba(255, 255, 255, 0.9);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #ff0000;
    transition: all 0.3s ease;
    z-index: 4;
}

.play-button:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 1);
}

.play-button.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.5);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    justify-content: space-between;
    padding: 12px;
    z-index: 3;
}

.video-overlay.playing {
    display: flex;
}

.video-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #667eea;
    display: none;
    overflow: hidden;
}

.video-content.playing {
    display: block;
}

/* Floating orbs */
.video-content::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: floatOrb1 8s ease-in-out infinite;
    filter: blur(2px);
}

.video-content::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(0, 255, 200, 0.3);
    border-radius: 50%;
    animation: floatOrb2 6s ease-in-out infinite reverse;
    filter: blur(1px);
}

@keyframes screensaverGradient {
    0% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
    100% { background-position: 0% 50%; }
}

@keyframes floatOrb1 {
    0% {
        transform: translate(-20px, -20px) scale(1);
        opacity: 0.8;
    }
    25% {
        transform: translate(80%, 20px) scale(1.2);
        opacity: 0.6;
    }
    50% {
        transform: translate(70%, 80%) scale(0.8);
        opacity: 0.9;
    }
    75% {
        transform: translate(20px, 70%) scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: translate(-20px, -20px) scale(1);
        opacity: 0.8;
    }
}

@keyframes floatOrb2 {
    0% {
        transform: translate(80%, 80%) scale(1);
        opacity: 0.7;
    }
    33% {
        transform: translate(40px, 50%) scale(1.3);
        opacity: 0.5;
    }
    66% {
        transform: translate(60%, 20px) scale(0.9);
        opacity: 0.8;
    }
    100% {
        transform: translate(80%, 80%) scale(1);
        opacity: 0.7;
    }
}

/* Floating shapes container */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    opacity: 0.6;
}

.shape-1 {
    width: 60px;
    height: 60px;
    background: #ff6b6b;
    animation: swoopShape1 10s ease-in-out infinite;
}

.shape-2 {
    width: 40px;
    height: 40px;
    background: #4834d4;
    animation: swoopShape2 8s ease-in-out infinite;
}

.shape-3 {
    width: 80px;
    height: 80px;
    background: #00d2d3;
    animation: swoopShape3 12s ease-in-out infinite;
}

.shape-4 {
    width: 30px;
    height: 30px;
    background: #5f27cd;
    animation: swoopShape4 7s ease-in-out infinite;
}

.shape-5 {
    width: 100px;
    height: 100px;
    background: #ff9ff3;
    animation: swoopShape5 14s ease-in-out infinite;
}

@keyframes swoopShape1 {
    0% { transform: translate(-30px, 50%) rotate(0deg); }
    25% { transform: translate(80%, 20px) rotate(90deg); }
    50% { transform: translate(120%, 80%) rotate(180deg); }
    75% { transform: translate(30px, 90%) rotate(270deg); }
    100% { transform: translate(-30px, 50%) rotate(360deg); }
}

@keyframes swoopShape2 {
    0% { transform: translate(100%, -20px) rotate(0deg) scale(1); }
    33% { transform: translate(20px, 40%) rotate(120deg) scale(1.5); }
    66% { transform: translate(60%, 100%) rotate(240deg) scale(0.8); }
    100% { transform: translate(100%, -20px) rotate(360deg) scale(1); }
}

@keyframes swoopShape3 {
    0% { transform: translate(50%, -40px) rotate(0deg); }
    20% { transform: translate(110%, 30%) rotate(72deg); }
    40% { transform: translate(80%, 110%) rotate(144deg); }
    60% { transform: translate(20%, 80%) rotate(216deg); }
    80% { transform: translate(-20px, 30%) rotate(288deg); }
    100% { transform: translate(50%, -40px) rotate(360deg); }
}

@keyframes swoopShape4 {
    0% { transform: translate(30px, 90%) rotate(0deg) scale(1); }
    50% { transform: translate(90%, 10px) rotate(180deg) scale(2); }
    100% { transform: translate(30px, 90%) rotate(360deg) scale(1); }
}

@keyframes swoopShape5 {
    0% { transform: translate(-50px, 20%) rotate(0deg); }
    25% { transform: translate(40%, -30px) rotate(90deg); }
    50% { transform: translate(110%, 60%) rotate(180deg); }
    75% { transform: translate(60%, 110%) rotate(270deg); }
    100% { transform: translate(-50px, 20%) rotate(360deg); }
}

.fake-video {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.video-progress {
    background: rgba(255, 255, 255, 0.3);
    height: 3px;
    border-radius: 2px;
    overflow: hidden;
    margin-top: auto;
    margin-bottom: 8px;
}

.progress-bar {
    background: #ff0000;
    height: 100%;
    width: 0%;
    border-radius: 2px;
    transition: width 0.1s ease;
}

.video-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 11px;
}

.video-btn {
    background: none;
    border: none;
    color: white;
    font-size: 13px;
    cursor: pointer;
    padding: 4px;
    border-radius: 3px;
    transition: background 0.3s;
}

.video-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.video-time {
    margin-left: auto;
}

.video-title {
    margin-bottom: 10px;
    flex-shrink: 0;
}

.video-title h4 {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 3px;
    line-height: 1.3;
    color: var(--text-primary);
}

.video-title p {
    font-size: 10px;
    color: var(--text-secondary);
}

.engagement-boost {
    background: var(--plex-yellow);
    color: white;
    padding: 6px 10px;
    border-radius: 5px;
    margin-top: 8px;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
    flex-shrink: 0;
}

.engagement-boost.active {
    opacity: 1;
    transform: translateY(0);
}

.boost-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 500;
}

.boost-message i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.engagement-metrics {
    display: flex;
    justify-content: space-around;
    gap: 6px;
    margin-bottom: 10px;
    flex-shrink: 0;
}

.metric {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(248, 249, 250, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 8px;
    border-radius: var(--radius);
    flex: 1;
    justify-content: center;
    font-size: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.metric-value {
    font-weight: 600;
    color: var(--secondary-color);
}

.metric-arrow {
    color: var(--secondary-color);
    font-weight: bold;
}

.cta-primary {
    background: #094AA4;
    color: white;
    padding: 15px 30px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    font-size: 16px;
}

.cta-primary:hover {
    background: #073d8a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-primary i {
    color: white !important;
    font-size: 16px;
}

.cta-secondary {
    background: transparent;
    color: #094AA4;
    padding: 15px 30px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    border: 2px solid #094AA4;
    cursor: pointer;
    font-size: 16px;
}

.cta-secondary:hover {
    background: #094AA4;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 255, 255, 0.5);
}

/* How It Works */
.how-it-works {
    padding: 120px 0;
    min-height: 100vh;
    background: #ffffff;
    position: relative;
    overflow-x: hidden;
    z-index: 1;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: transparent;
    pointer-events: none;
}

.how-it-works::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: transparent;
    pointer-events: none;
}


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

/* Section Decorations */
.section-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.deco-icon {
    position: absolute;
    font-size: 24px;
    color: rgba(41, 121, 255, 0.15);
    animation: floatGently 8s ease-in-out infinite;
    z-index: -1;
}

.deco-icon-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.deco-icon-2 {
    top: 70%;
    right: 12%;
    animation-delay: 2s;
    color: rgba(0, 200, 83, 0.15);
}

.deco-icon-3 {
    top: 40%;
    right: 5%;
    animation-delay: 4s;
    color: rgba(255, 214, 0, 0.2);
}

/* Large Background Lines */
.bg-line {
    display: none;
}

.bg-line-1 {
    top: 15%;
    left: -20%;
    width: 120%;
    background: linear-gradient(90deg, transparent, rgba(41, 121, 255, 0.6), rgba(0, 200, 83, 0.5), rgba(255, 214, 0, 0.4), transparent);
    animation-delay: 0s;
    transform: rotate(5deg);
}

.bg-line-2 {
    top: 1%;
    left: -20%;
    width: 120%;
    background: linear-gradient(90deg, transparent, rgba(41, 121, 255, 0.6), rgba(0, 200, 83, 0.5), rgba(255, 214, 0, 0.4), transparent);
    animation-delay: 0s;
    transform: rotate(0deg);
}

.bg-line-3 {
    top: 75%;
    left: -10%;
    width: 110%;
    background: linear-gradient(90deg, transparent, rgba(255, 214, 0, 0.6), rgba(41, 121, 255, 0.5), rgba(0, 200, 83, 0.4), transparent);
    animation-delay: 6s;
    transform: rotate(2deg);
}

/* Large Diagonal Lines */
.diagonal-line {
    display: none;
}

.diagonal-1 {
    top: 25%;
    left: -10%;
    background: linear-gradient(45deg, transparent, rgba(41, 121, 255, 0.5), rgba(0, 200, 83, 0.4), transparent);
    transform: rotate(15deg);
    animation-delay: 1s;
}

.diagonal-2 {
    bottom: 20%;
    right: -10%;
    background: linear-gradient(45deg, transparent, rgba(0, 200, 83, 0.5), rgba(255, 214, 0, 0.4), transparent);
    transform: rotate(-25deg);
    animation-delay: 5s;
}

/* Large Curved Lines */
.curved-line {
    display: none;
}

.curved-1 {
    top: -10%;
    left: -5%;
    border-top-color: rgba(0, 200, 83, 0.4);
    border-right-color: rgba(0, 200, 83, 0.2);
    border-bottom-color: rgba(41, 121, 255, 0.1);
}

.curved-2 {
    bottom: -15%;
    right: -10%;
    border-bottom-color: rgba(255, 214, 0, 0.4);
    border-left-color: rgba(255, 214, 0, 0.2);
    border-top-color: rgba(0, 200, 83, 0.1);
    animation-direction: reverse;
}

/* Large Connecting Lines */
.connecting-line {
    display: none;
}

.connecting-1 {
    top: 35%;
    left: 5%;
    width: 0;
    max-width: 500px;
    background: linear-gradient(90deg, rgba(41, 121, 255, 0.5), rgba(0, 200, 83, 0.4));
    animation-delay: 1s;
}

.connecting-2 {
    bottom: 30%;
    right: 5%;
    width: 0;
    max-width: 450px;
    background: linear-gradient(90deg, rgba(0, 200, 83, 0.5), rgba(255, 214, 0, 0.4));
    animation-delay: 4s;
}

/* Large Wave Lines */
.wave-line {
    display: none;
}

.wave-1 {
    display: none;
}

.wave-2 {
    display: none;
}

/* Dot Pattern */
.dot-pattern {
    display: none;
}

.dot-pattern-1 {
    top: 10%;
    right: 8%;
    animation-delay: 3s;
}

@keyframes floatGently {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.15;
    }
    50% {
        transform: translateY(-15px) rotate(10deg);
        opacity: 0.25;
    }
}

@keyframes flowAcross {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes rotateSlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes extend {
    0%, 100% {
        width: 0;
        opacity: 0;
    }
    50% {
        width: var(--max-width, 300px);
        opacity: 1;
    }
}

@keyframes waveMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 200px 0;
    }
}

@keyframes dotFloat {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-20px);
        opacity: 0.4;
    }
}

/* Spiral Lines */
.spiral-line {
    display: none;
}

.spiral-1 {
    top: 10%;
    right: 5%;
    border-top-color: rgba(41, 121, 255, 0.5);
    border-right-color: rgba(0, 200, 83, 0.3);
    border-bottom-color: rgba(255, 214, 0, 0.2);
    animation-delay: 0s;
}

.spiral-2 {
    bottom: 5%;
    left: 8%;
    border-bottom-color: rgba(0, 200, 83, 0.5);
    border-left-color: rgba(255, 214, 0, 0.3);
    border-top-color: rgba(41, 121, 255, 0.2);
    animation-direction: reverse;
    animation-delay: 7s;
}

/* Loop Lines */
.loop-line {
    display: none;
}

.loop-1 {
    top: 60%;
    left: 15%;
    border-top-color: rgba(41, 121, 255, 0.4);
    border-bottom-color: rgba(0, 200, 83, 0.3);
    transform: rotate(45deg);
    animation-delay: 2s;
}

/* Infinity Lines */
.infinity-line {
    display: none;
}

.infinity-1 {
    top: 40%;
    right: 10%;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(255, 214, 0, 0.4) 45%, rgba(255, 214, 0, 0.4) 55%, transparent 60%);
    transform: rotate(-15deg);
    animation-delay: 3s;
}

@keyframes spiralRotate {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: rotate(180deg) scale(1.05);
        opacity: 0.4;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.2;
    }
}

@keyframes loopPulse {
    0%, 100% {
        transform: rotate(45deg) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: rotate(45deg) scale(1.15);
        opacity: 0.4;
    }
}

@keyframes infinityFlow {
    0%, 100% {
        transform: rotate(-15deg) scaleX(1);
        opacity: 0.2;
    }
    50% {
        transform: rotate(-15deg) scaleX(1.3);
        opacity: 0.4;
    }
}

@keyframes diagonalFlow {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(0) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translateX(50px) scale(1.1);
    }
}


.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.why-join .section-title {
    color: var(--secondary-color);
}

.faq .section-title {
    color: var(--secondary-color);
}

/* Horizontal Scroll Wrapper */
.steps-wrapper {
    width: 100%;
    overflow: visible;
    margin-top: 50px;
    padding: 40px 0;
}

.steps-track {
    display: flex;
    gap: 40px;
    will-change: transform;
    padding: 0 50px;
}

/* Desktop: Steps arranged horizontally for scroll effect */
@media (min-width: 769px) {
    .steps-track {
        width: max-content;
        padding-right: 100vw;
    }

    .steps-track .step {
        min-width: 350px;
        max-width: 350px;
        flex-shrink: 0;
    }
}

/* Mobile: Vertical stack */
@media (max-width: 768px) {
    .how-it-works {
        padding: 80px 0;
    }

    .steps-wrapper {
        padding: 20px 0;
    }

    .steps-track {
        flex-direction: column;
        width: 100%;
        padding: 0;
    }

    .steps-track .step {
        width: 100%;
    }
}

/* Legacy grid class kept for backwards compatibility */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step {
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.15),
        0 2px 10px rgba(255, 255, 255, 0.1),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(41, 121, 255, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    z-index: -1;
}

.step:hover {
    transform: translateY(-12px) scale(1.05);
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.25),
        0 8px 20px rgba(41, 121, 255, 0.15),
        inset 0 1px 3px rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
}

.step:hover::before {
    transform: scale(1);
}


.step-icon {
    background: var(--primary-color);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
}

.step h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.step p {
    color: var(--text-primary);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Why Join */
.why-join {
    padding: 80px 0;
    background: rgba(248, 249, 250, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    z-index: 2;
    overflow-x: hidden;
}

.why-join::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: #ffffff,
                radial-gradient(circle at 20% 30%, rgba(0, 200, 83, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 214, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.why-join::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: transparent;
    pointer-events: none;
}

.benefits-row {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    gap: 60px;
    margin: 60px 0;
    padding: 0 20px;
}

.benefit-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 220px;
    transition: all 0.3s ease;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--plex-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(41, 121, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.benefit-icon i {
    font-size: 36px;
    color: white;
}

.benefit-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.benefit-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    opacity: 0.9;
}

.benefit-item:hover .benefit-icon {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 12px 32px rgba(41, 121, 255, 0.4);
}

.benefit-item:hover h3 {
    color: var(--plex-blue);
}

@media (max-width: 768px) {
    .benefits-row {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .benefit-item {
        max-width: 100%;
    }
}


.deco-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 214, 0, 0.1);
    animation: pulse 6s ease-in-out infinite;
}

.deco-shape-1 {
    top: 20%;
    left: 15%;
    width: 80px;
    height: 80px;
    animation-delay: 1s;
}

.deco-shape-2 {
    bottom: 25%;
    right: 10%;
    width: 60px;
    height: 60px;
    background: rgba(0, 200, 83, 0.08);
    animation-delay: 3s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.2;
    }
}

.social-proof {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}


.social-proof {
    text-align: center;
    margin-top: 40px;
}

.social-proof p {
    font-size: 18px;
    color: var(--text-primary);
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

/* Application Form */
.application-form {
    padding: 80px 0;
    background: rgba(248, 249, 250, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
}

.application-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(41, 121, 255, 0.05), rgba(0, 200, 83, 0.05));
    pointer-events: none;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 5px 15px rgba(255, 255, 255, 0.2),
        inset 0 1px 3px rgba(255, 255, 255, 0.4);
    position: relative;
    z-index: 1;
}

.form-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.form-intro {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.creator-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.form-group input,
.form-group select {
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    accent-color: var(--primary-color);
    flex-shrink: 0;
}

.form-submit {
    margin-top: 20px;
    align-self: center;
}

.form-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-primary);
    margin-top: 15px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

/* Assurance */
.assurance {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.assurance .section-title {
    margin-bottom: 80px;
}

.assurance-showcase {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.assurance-feature {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    padding: 30px;
    transition: all 0.4s ease;
}

.assurance-feature.reverse {
    flex-direction: row-reverse;
}

.assurance-feature.reverse .feature-number {
    right: auto;
    left: -20px;
}

.feature-number {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 120px;
    font-weight: 900;
    color: rgba(41, 121, 255, 0.05);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

.feature-content {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.assurance-feature.reverse .feature-content {
    flex-direction: row-reverse;
    text-align: right;
}

.feature-icon-outline {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    border: 3px solid var(--plex-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: rgba(41, 121, 255, 0.05);
}

.feature-icon-outline::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(135deg, var(--plex-blue), var(--plex-yellow));
    -webkit-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;
}

.feature-icon-outline i {
    font-size: 42px;
    color: var(--plex-blue);
}

.feature-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.feature-text p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 500px;
}

.assurance-feature:hover .feature-icon-outline {
    transform: scale(1.05) rotate(-5deg);
    border-color: var(--plex-yellow);
}

.assurance-feature:hover .feature-icon-outline::before {
    opacity: 1;
}

.assurance-feature:hover .feature-number {
    color: rgba(41, 121, 255, 0.08);
}

@media (max-width: 768px) {
    .assurance-showcase {
        gap: 40px;
    }

    .assurance-feature,
    .assurance-feature.reverse {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .assurance-feature.reverse .feature-content {
        flex-direction: column;
        text-align: center;
    }

    .feature-content {
        flex-direction: column;
        align-items: center;
    }

    .feature-number {
        font-size: 80px;
        right: 50%;
        transform: translate(50%, -50%);
    }

    .assurance-feature.reverse .feature-number {
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .feature-text p {
        max-width: 100%;
    }
}


.grid-overlay {
    display: none;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.zigzag-line {
    display: none;
}

@keyframes zigzagMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 200px 0;
    }
}

/* FAQ */
.faq {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
}

.faq-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 18px;
    margin-top: -30px;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--plex-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.faq-card:hover::before {
    transform: scaleX(1);
}

.faq-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(41, 121, 255, 0.15);
    border-color: rgba(41, 121, 255, 0.2);
}

.faq-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(41, 121, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.faq-icon-wrapper i {
    font-size: 28px;
    color: var(--plex-blue);
}

.faq-card:hover .faq-icon-wrapper {
    transform: scale(1.1) rotate(-5deg);
    background: rgba(41, 121, 255, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 15px;
}

.faq-question h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
}

.toggle-icon {
    flex-shrink: 0;
    color: var(--plex-blue);
    font-size: 16px;
    transition: transform 0.3s ease;
    margin-top: 5px;
}

.faq-card.active .toggle-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

.faq-card.active .faq-answer {
    max-height: 300px;
    opacity: 1;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-card {
        padding: 25px;
    }

    .faq-question h3 {
        font-size: 18px;
    }
}


/* Footer */
.footer {
    background: #263238;
    color: white;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

/* Animated gradient top border */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--plex-blue);
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 0%;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-mixed);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.footer-logo span {
    background: var(--gradient-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 280px;
}

.footer-disclaimers {
    margin-top: 10px;
}

.footer-disclaimers p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
    background: var(--gradient-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.footer-column a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--plex-yellow);
    transition: width 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-column a:hover::after {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: flex-start;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--plex-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-links a:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 24px rgba(0, 200, 83, 0.4);
}

/* Responsive adjustments */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 40px;
    }

    .footer-social {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
    }

    .footer-social .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-column {
        align-items: center;
        text-align: center;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

/* Confetti Animation */
.confetti-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.confetti-piece {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #ff6b6b;
    animation: confettiFall 3s linear infinite;
}

.confetti-piece:nth-child(2n) {
    background: #4ecdc4;
    width: 8px;
    height: 8px;
    animation-delay: -0.5s;
}

.confetti-piece:nth-child(3n) {
    background: #45b7d1;
    width: 6px;
    height: 6px;
    animation-delay: -1s;
}

.confetti-piece:nth-child(4n) {
    background: #f9ca24;
    width: 12px;
    height: 12px;
    animation-delay: -1.5s;
}

.confetti-piece:nth-child(5n) {
    background: #6c5ce7;
    width: 8px;
    height: 8px;
    animation-delay: -2s;
}

.confetti-piece:nth-child(6n) {
    background: #fd79a8;
    width: 10px;
    height: 10px;
    animation-delay: -2.5s;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

.modal-content {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    max-width: 450px;
    max-height: 80vh;
    margin: 20px;
    overflow-y: auto;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.25),
        0 10px 25px rgba(255, 255, 255, 0.1),
        inset 0 1px 3px rgba(255, 255, 255, 0.2);
}

.modal-header {
    padding: 30px 30px 20px;
    text-align: center;
    position: relative;
}

.close {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 28px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: white;
}

/* Form styles for modal */
.creator-form .form-group label {
    color: white !important;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    text-align: left;
}

.creator-form .form-row {
    display: flex;
    gap: 15px;
}

.creator-form .form-row .form-group {
    flex: 1;
}

.creator-form .form-group input,
.creator-form .form-group select {
    width: 100%;
    box-sizing: border-box;
}

.creator-form .form-submit {
    border: none !important;
    outline: none !important;
}

.creator-form .form-note {
    color: white !important;
    font-size: 14px;
    margin-top: 15px;
}

.social-proof p {
    color: var(--plex-yellow) !important;
    font-weight: 600;
}

.modal-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.modal-body {
    padding: 0 30px 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.thank-you-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.thank-you-tagline {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-top: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.modal-footer {
    padding: 20px 30px 30px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
        overflow-x: hidden;
    }

    .hero-container {
        max-width: 100%;
        width: 100%;
        padding: 0 15px;
        flex-direction: column;
        gap: 40px;
        box-sizing: border-box;
    }

    .hero-content {
        max-width: 100%;
        width: 100%;
        align-items: center;
    }

    .hero-brand {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 15px;
        max-width: 100%;
        text-align: center;
        word-wrap: break-word;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        max-width: 100%;
        text-align: center;
    }

    .hero-cta {
        flex-direction: column;
        gap: 15px;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        box-sizing: border-box;
    }

    /* Responsive Devices Combo */
    .hero-demo {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        width: 100%;
        max-width: 100%;
    }

    .devices-combo {
        width: 100%;
        max-width: 100%;
        height: auto;
        flex-direction: column;
        gap: 30px;
        padding: 20px 0;
        box-sizing: border-box;
    }

    .desktop-mockup {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        animation: none;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .desktop-frame {
        width: calc(100% - 20px);
        max-width: 340px;
        height: 260px;
        margin: 0 auto;
    }

    .phone-mockup {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        animation: none;
    }

    .phone-frame {
        width: 220px;
        height: 440px;
    }

    .social-feed {
        width: 100%;
        max-width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .dashboard-sidebar {
        width: 60px;
        padding: 8px 4px;
    }

    .sidebar-logo .plex-logo {
        font-size: 10px;
    }

    .menu-item {
        padding: 6px 4px;
        font-size: 8px;
        flex-direction: column;
        gap: 2px;
    }

    .menu-item span {
        display: none;
    }

    .menu-item i {
        font-size: 10px;
    }

    .dashboard-main {
        padding: 8px;
    }

    .dashboard-header-section h3 {
        font-size: 11px;
    }

    .date-range {
        font-size: 8px;
        padding: 3px 6px;
    }

    .stat-card {
        padding: 5px;
    }

    .stat-icon {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }

    .stat-label {
        font-size: 7px;
    }

    .stat-value {
        font-size: 11px;
    }

    .stat-change {
        font-size: 7px;
    }

    .chart-section {
        padding: 6px;
    }

    .chart-header {
        font-size: 9px;
    }

    .chart-container {
        height: 50px;
    }

    .recent-videos {
        padding: 6px;
    }

    .section-title-small {
        font-size: 9px;
    }

    .video-item {
        padding: 4px;
    }

    .video-thumb {
        width: 40px;
        height: 22px;
    }

    .video-name {
        font-size: 8px;
    }

    .video-stats {
        font-size: 7px;
    }

    .plex-app-interface {
        padding: 25px 10px 10px 10px;
    }

    .earnings-card {
        padding: 14px;
        margin-bottom: 10px;
    }

    .earnings-amount {
        font-size: 22px;
    }

    .task-card {
        padding: 10px;
        margin-bottom: 6px;
    }

    .youtube-mockup {
        padding: 10px;
        margin: 0 4px 4px 4px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu {
        gap: 8px;
    }

    .nav-link {
        font-size: 12px;
        display: none;
    }

    .cta-nav-btn {
        padding: 8px 14px;
        font-size: 13px;
    }

    .container {
        padding: 0 15px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .section-title {
        font-size: 26px;
        padding: 0 10px;
    }

    .steps-grid,
    .benefits-grid,
    .assurance-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Hide floating elements on mobile to prevent overflow */
    .floating-youtube-icon,
    .floating-play-button,
    .floating-subscribers {
        display: none;
    }

    .floating-shape {
        opacity: 0.3;
    }

    .floating-shape:nth-child(1) {
        width: 30px;
        height: 30px;
        left: 5%;
    }

    .floating-shape:nth-child(2) {
        width: 20px;
        height: 20px;
        right: 5%;
    }

    .floating-shape:nth-child(3) {
        width: 40px;
        height: 40px;
        right: 10%;
    }

    /* Assurance section mobile fix */
    .assurance {
        padding: 60px 0;
    }

    .assurance .section-title {
        margin-bottom: 40px;
    }

    .feature-icon-outline {
        width: 70px;
        height: 70px;
    }

    .feature-icon-outline i {
        font-size: 30px;
    }

    .feature-text h3 {
        font-size: 18px;
    }

    .feature-text p {
        font-size: 14px;
    }

    /* Modal mobile fixes */
    .modal-content {
        max-width: calc(100% - 30px);
        margin: 15px;
        max-height: 90vh;
    }

    .modal-header {
        padding: 20px 20px 15px;
    }

    .modal-header h2 {
        font-size: 20px;
    }

    .modal-body {
        padding: 0 20px 15px;
    }

    .creator-form .form-row {
        flex-direction: column;
        gap: 15px;
    }

    /* Hide decorative elements that cause overflow on mobile */
    .bg-line,
    .diagonal-line,
    .curved-line,
    .connecting-line,
    .zigzag-line,
    .grid-overlay {
        display: none;
    }

    /* Contain animations that might cause overflow */
    .hero::before {
        display: none;
    }

    .how-it-works::before,
    .how-it-works::after,
    .why-join::before,
    .why-join::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-brand {
        font-size: 1.75rem;
    }

    .hero-title {
        font-size: 1.5rem;
        text-align: center;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        text-align: center;
    }

    .hero-cta {
        gap: 10px;
        justify-content: center;
        padding: 0 10px;
    }

    .cta-primary,
    .cta-secondary {
        padding: 12px 20px;
        font-size: 13px;
        max-width: 250px;
    }

    .desktop-frame {
        width: calc(100% - 10px);
        max-width: 300px;
        height: 220px;
    }

    .phone-frame {
        width: 180px;
        height: 360px;
    }

    .plex-app-interface {
        padding: 18px 8px 8px 8px;
    }

    .plex-logo {
        font-size: 18px;
    }

    .earnings-card {
        padding: 12px;
        margin-bottom: 8px;
    }

    .earnings-amount {
        font-size: 18px;
    }

    .task-card {
        padding: 8px;
        margin-bottom: 6px;
    }

    .task-title {
        font-size: 12px;
    }

    .task-status {
        font-size: 10px;
    }

    .task-reward {
        font-size: 12px;
    }

    .youtube-mockup {
        padding: 8px;
        margin: 0 3px 3px 3px;
    }

    .video-title h4 {
        font-size: 11px;
    }

    .video-title p {
        font-size: 9px;
    }

    .metric {
        font-size: 9px;
        padding: 5px 6px;
        gap: 3px;
    }

    .boost-message {
        font-size: 10px;
    }

    .engagement-boost {
        padding: 5px 8px;
    }

    .hero-demo {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

    .social-feed {
        width: 100%;
        max-width: 100%;
    }

    /* How It Works section - 480px */
    .how-it-works {
        padding: 60px 0;
        min-height: auto;
    }

    .step {
        padding: 20px 15px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .step h3 {
        font-size: 16px;
    }

    .step p {
        font-size: 13px;
    }

    /* Why Join section - 480px */
    .why-join {
        padding: 60px 0;
    }

    .benefits-row {
        gap: 30px;
        margin: 40px 0;
        padding: 0 10px;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
    }

    .benefit-icon i {
        font-size: 28px;
    }

    .benefit-item h3 {
        font-size: 16px;
    }

    .benefit-item p {
        font-size: 13px;
    }

    /* FAQ section - 480px */
    .faq {
        padding: 60px 0;
    }

    .faq-subtitle {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .faq-card {
        padding: 20px;
    }

    .faq-icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .faq-icon-wrapper i {
        font-size: 22px;
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .faq-answer p {
        font-size: 13px;
    }

    /* Footer - 480px */
    .footer {
        padding: 50px 0 25px;
    }

    .footer-logo {
        font-size: 1.5rem;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Nav - 480px */
    .nav-container {
        height: 60px;
        padding: 0 12px;
    }

    .logo-image {
        height: 32px;
    }

    .logo-text {
        font-size: 20px;
    }

    .cta-nav-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    /* Section titles - 480px */
    .section-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    /* Assurance - 480px */
    .assurance {
        padding: 50px 0;
    }

    .assurance .section-title {
        margin-bottom: 30px;
    }

    .assurance-feature {
        padding: 15px;
    }

    .feature-number {
        font-size: 60px;
    }

    .feature-icon-outline {
        width: 60px;
        height: 60px;
        border-radius: 15px;
    }

    .feature-icon-outline i {
        font-size: 26px;
    }

    .feature-text h3 {
        font-size: 16px;
    }

    .feature-text p {
        font-size: 13px;
    }
}

/* Social Feed Styles */
.social-feed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 280px;
    flex-shrink: 0;
    align-items: start;
}

.feed-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-height: 75px;
}

.feed-section.comments-feed {
    text-align: left !important;
}

.feed-section.comments-feed .feed-item,
.feed-section.comments-feed .feed-item *,
.feed-section.comments-feed .feed-content,
.feed-section.comments-feed .feed-scroll-container {
    text-align: left !important;
}

.feed-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #094AA4;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.feed-header i {
    font-size: 14px;
}

.likes-feed .feed-header i {
    color: #ff6b9d;
}

.comments-feed .feed-header i {
    color: #4ecdc4;
}

.shares-feed .feed-header i {
    color: #45b7d1;
}

.follows-feed .feed-header i {
    color: #96ceb4;
}

.feed-content {
    height: 75px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.feed-scroll-container {
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    padding-top: 4px;
    padding-bottom: 25px;
}

.feed-item {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 2px 0;
    color: #4a5568;
    font-size: 11px;
    margin-bottom: 0;
    min-height: 18px;
    opacity: 1;
    justify-content: flex-start;
    text-align: left;
}

.feed-item.entering {
    animation: fadeSlideIn 0.6s ease-out forwards;
}

.feed-item.leaving {
    animation: fadeSlideOut 0.4s ease-out forwards;
}

.feed-item .user-avatar {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #667eea;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 8px;
    font-weight: bold;
    flex-shrink: 0;
}

.feed-item .interaction-icon {
    font-size: 10px;
    margin-left: 3px;
}

.likes-feed .interaction-icon {
    color: #ff6b9d;
}

.comments-feed .interaction-icon {
    color: #4ecdc4;
}

.shares-feed .interaction-icon {
    color: #45b7d1;
}

.follows-feed .interaction-icon {
    color: #96ceb4;
}

.feed-item .comment-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-left: -2px;
    text-align: left !important;
    justify-self: flex-start;
}

.comments-feed .feed-item span {
    text-align: left !important;
}

@keyframes fadeSlideIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeSlideOut {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
}

.heart-animation {
    animation: heartBeat 1s ease-in-out infinite;
}

@keyframes heartBeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Very small screens (iPhone SE, small Android phones) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.3rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .cta-primary,
    .cta-secondary {
        padding: 10px 16px;
        font-size: 12px;
        max-width: 220px;
    }

    .desktop-frame {
        max-width: 260px;
        height: 190px;
    }

    .phone-frame {
        width: 160px;
        height: 320px;
    }

    .section-title {
        font-size: 20px;
    }

    .nav-container {
        padding: 0 10px;
    }

    .logo-image {
        height: 28px;
    }

    .logo-text {
        font-size: 18px;
    }

    .cta-nav-btn {
        padding: 5px 10px;
        font-size: 11px;
    }

    .faq-question h3 {
        font-size: 14px;
    }

    .benefit-item h3 {
        font-size: 15px;
    }

    .feature-text h3 {
        font-size: 15px;
    }

    .step h3 {
        font-size: 15px;
    }

    .modal-content {
        max-width: calc(100% - 20px);
        margin: 10px;
    }

    .modal-header h2 {
        font-size: 18px;
    }
}
