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

:root {
    --snap-yellow: #FFFC00;
    --snap-black: #000000;
    --snap-white: #FFFFFF;
    --snap-gray: #333333;
}

body {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--snap-black);
    color: var(--snap-white);
    overflow-x: hidden;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

#navbar.scrolled {
    padding: 10px 5%;
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 5px 30px rgba(255, 252, 0, 0.1);
}

.logo {
    font-size: 26px;
    font-weight: 900;
    color: var(--snap-yellow);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    position: relative;
}

.logo .logo-text {
    order: 2;
}

.logo .logo-in-title {
    order: 1;
}

body[dir="rtl"] .logo .logo-text {
    order: 1;
}

body[dir="rtl"] .logo .logo-in-title {
    order: 2;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--snap-yellow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 252, 0, 0.3);
}

.logo-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.nav-center {
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-center a {
    color: var(--snap-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s;
    position: relative;
}

.nav-center a:hover {
    color: var(--snap-black);
    background: var(--snap-yellow);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-switcher {
    display: flex;
    gap: 5px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-btn {
    background: transparent;
    color: var(--snap-white);
    border: none;
    padding: 8px 16px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
    text-transform: uppercase;
}

.lang-btn:hover {
    background: rgba(255, 252, 0, 0.1);
}

.lang-btn.active {
    background: var(--snap-yellow);
    color: var(--snap-black);
}

body[dir="rtl"] {
    direction: rtl;
}

body[dir="rtl"] .hero-wrapper {
    direction: ltr;
}

body[dir="rtl"] .hero-visual {
    order: 1;
}

body[dir="rtl"] .hero-content {
    text-align: right;
    direction: rtl;
    order: 2;
}

body[dir="rtl"] .badge {
    flex-direction: row-reverse;
}

body[dir="rtl"] h1 {
    text-align: right;
}

body[dir="rtl"] .hero-description {
    text-align: right;
}

body[dir="rtl"] .hero-features {
    justify-content: flex-start;
}

body[dir="rtl"] .hero-feature {
    flex-direction: row-reverse;
    font-weight: 700;
}

body[dir="rtl"] .cta-container {
    justify-content: flex-start;
}

body[dir="rtl"] .trust-indicators {
    justify-content: flex-start;
}

body[dir="rtl"] .logo {
    flex-direction: row-reverse;
}

body[dir="rtl"] .nav-right {
    flex-direction: row-reverse;
}

.btn-login {
    background: var(--snap-yellow);
    color: var(--snap-black);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: 50px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-login::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.btn-login:hover::before {
    left: 100%;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 252, 0, 0.4);
}

.btn-nav {
    background: var(--snap-yellow);
    color: var(--snap-black);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.btn-nav:hover::before {
    left: 100%;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 252, 0, 0.4);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--snap-yellow);
    border-radius: 3px;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 5% 80px;
    z-index: 1;
    overflow: hidden;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
}

/* Animated Background Elements */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(255, 252, 0, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 70%, rgba(255, 252, 0, 0.06) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 252, 0, 0.03) 0%, transparent 60%);
    animation: backgroundPulse 15s ease-in-out infinite;
    z-index: -2;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 252, 0, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 90% 80%, rgba(255, 252, 0, 0.08) 0%, transparent 25%);
    animation: glowMove 20s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes backgroundPulse {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    25% {
        transform: translate(5%, 5%) scale(1.05);
        opacity: 0.8;
    }
    50% {
        transform: translate(-5%, 5%) scale(1.1);
        opacity: 1;
    }
    75% {
        transform: translate(5%, -5%) scale(1.05);
        opacity: 0.9;
    }
}

@keyframes glowMove {
    0% {
        opacity: 0.5;
        transform: translateX(0) translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateX(30px) translateY(-20px);
    }
    100% {
        opacity: 0.7;
        transform: translateX(-20px) translateY(30px);
    }
}

/* Floating Orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    animation: orbFloat 10s ease-in-out infinite;
}

.hero-orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(255, 252, 0, 0.15);
    top: -100px;
    right: 10%;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(255, 252, 0, 0.1);
    bottom: 10%;
    left: 5%;
    animation-delay: -3s;
}

.hero-orb-3 {
    width: 200px;
    height: 200px;
    background: rgba(255, 252, 0, 0.12);
    top: 50%;
    left: 30%;
    animation-delay: -6s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }
    75% {
        transform: translate(20px, 30px) scale(1.05);
    }
}

/* Grid Pattern Overlay */
.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 252, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 252, 0, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    z-index: -1;
    opacity: 0.5;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    width: 100%;
    align-items: center;
}

.hero-content {
    text-align: left;
    animation: fadeInLeft 1s ease-out;
}

.hero-visual {
    position: relative;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 252, 0, 0.15);
    color: var(--snap-yellow);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 252, 0, 0.3);
    animation: pulse 2s infinite;
    letter-spacing: 0.5px;
}

.badge .live-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: livePulse 1.5s infinite;
}

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

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

h1 {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -2px;
}

h1 .line {
    display: block;
}

h1 .logo-in-title {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: var(--snap-yellow);
    border-radius: 20px;
    padding: 12px;
    margin: 0 10px;
    vertical-align: middle;
    position: relative;
    top: -5px;
}

h1 .logo-in-title img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

h1 [data-i18n="hero.title2"]:not(:empty)::after {
    content: ' ';
}

body[dir="rtl"] h1 [data-i18n="hero.title2"] {
    display: none;
}

body[dir="rtl"] h2 [data-i18n="howItWorks.titleEnd"] {
    display: none;
}

h2 .logo-in-title {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--snap-yellow);
    border-radius: 15px;
    padding: 10px;
    margin: 0 8px;
    vertical-align: middle;
    position: relative;
    top: -3px;
}

h2 .logo-in-title img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

h4 .logo-in-title {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--snap-yellow);
    border-radius: 10px;
    padding: 6px;
    margin-right: 8px;
    vertical-align: middle;
    position: relative;
    top: -2px;
}

h4 .logo-in-title img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

body[dir="rtl"] h4 .logo-in-title {
    margin-right: 0;
    margin-left: 8px;
}

.logo .logo-in-title {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: var(--snap-yellow);
    border-radius: 12px;
    padding: 8px;
    margin-right: 10px;
    vertical-align: middle;
}

.logo .logo-in-title img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

body[dir="rtl"] .logo .logo-in-title {
    margin-right: 0;
    margin-left: 10px;
}

.highlight {
    color: var(--snap-yellow);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 252, 0, 0.3);
    z-index: -1;
    transform: skewX(-5deg);
}

.hero-description {
    font-size: 20px;
    margin-bottom: 40px;
    color: #b0b0b0;
    line-height: 1.7;
    max-width: 540px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    justify-content: flex-start;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-size: 15px;
}

.hero-feature svg {
    width: 20px;
    height: 20px;
    fill: var(--snap-yellow);
    flex-shrink: 0;
}

/* Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out 0.3s both;
    position: relative;
}

.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: 45px;
    padding: 12px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5),
                0 0 0 2px rgba(255, 252, 0, 0.2),
                inset 0 0 30px rgba(255, 252, 0, 0.05);
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--snap-black);
    border-radius: 35px;
    overflow: hidden;
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
}

.phone-content {
    padding: 50px 15px 15px;
    height: 100%;
}

.phone-header {
    text-align: center;
    margin-bottom: 20px;
}

.phone-header .header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.phone-header .logo-badge {
    width: 24px;
    height: 24px;
    background: var(--snap-yellow);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-header .logo-badge img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.phone-header h4 {
    font-size: 14px;
    color: var(--snap-yellow);
    margin: 0;
}

.phone-header .verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #00ff88;
    margin-top: 4px;
}

.phone-header .verified svg {
    width: 12px;
    height: 12px;
    fill: #00ff88;
}

.phone-header p {
    font-size: 11px;
    color: #666;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.story-item {
    aspect-ratio: 9/16;
    background: linear-gradient(145deg, var(--snap-yellow) 0%, #e6e300 100%);
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    animation: storyPop 0.5s ease-out backwards;
}

.story-item:nth-child(1) { animation-delay: 0.5s; }
.story-item:nth-child(2) { animation-delay: 0.7s; }
.story-item:nth-child(3) { animation-delay: 0.9s; }
.story-item:nth-child(4) { animation-delay: 1.1s; }

@keyframes storyPop {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.story-item .download-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: var(--snap-black);
    color: var(--snap-white);
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Floating Feature Badges */
.feature-badge {
    position: absolute;
    background: rgba(255, 252, 0, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid var(--snap-yellow);
    border-radius: 20px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: badgeFadeIn 0.6s ease-out backwards, badgeFloat 3s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(255, 252, 0, 0.2);
}

.feature-badge .badge-icon {
    font-size: 24px;
    width: 36px;
    height: 36px;
    background: var(--snap-yellow);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-badge .badge-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-badge .badge-label {
    font-size: 11px;
    color: var(--snap-yellow);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-badge .badge-value {
    font-size: 16px;
    font-weight: 800;
    color: var(--snap-white);
}

.feature-badge:nth-child(1) {
    top: 5%;
    right: -55px;
    animation-delay: 0.2s;
}

.feature-badge:nth-child(2) {
    top: 28%;
    left: -65px;
    animation-delay: 0.4s;
}

.feature-badge:nth-child(3) {
    top: 52%;
    right: -50px;
    animation-delay: 0.6s;
}

.feature-badge:nth-child(4) {
    bottom: 22%;
    left: -60px;
    animation-delay: 0.8s;
}

.feature-badge:nth-child(5) {
    bottom: 5%;
    right: -45px;
    animation-delay: 1s;
}

@keyframes badgeFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

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

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

.btn-primary {
    background: var(--snap-yellow);
    color: var(--snap-black);
    padding: 20px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 252, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--snap-white);
    padding: 20px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    border: 2px solid var(--snap-white);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--snap-white);
    color: var(--snap-black);
}

.trust-indicators {
    margin-top: 60px;
    display: flex;
    justify-content: flex-start;
    gap: 50px;
    flex-wrap: wrap;
}

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

.trust-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--snap-yellow);
}

.trust-label {
    font-size: 14px;
    color: #999;
    margin-top: 5px;
}

/* Features Section */
.features {
    position: relative;
    padding: 100px 5%;
    z-index: 1;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
}

.section-title p {
    font-size: 18px;
    color: #999;
}

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

.feature-card {
    background: rgba(255, 252, 0, 0.05);
    border: 2px solid rgba(255, 252, 0, 0.2);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--snap-yellow);
    box-shadow: 0 20px 40px rgba(255, 252, 0, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--snap-yellow);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 30px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--snap-yellow);
}

.feature-card p {
    color: #ccc;
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    position: relative;
    padding: 100px 5%;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 252, 0, 0.05) 100%);
    z-index: 1;
}

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

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--snap-yellow);
    color: var(--snap-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 900;
    margin: 0 auto 20px;
}

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

.step p {
    color: #999;
    line-height: 1.6;
}

/* Demo Section */
.demo {
    position: relative;
    padding: 100px 5%;
    z-index: 1;
}

.demo .demo-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 252, 0, 0.05);
    border: 2px solid var(--snap-yellow);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
}

.demo .demo-container h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.demo .demo-container p {
    color: #999;
    margin-bottom: 40px;
    font-size: 18px;
}

.username-input-container {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.username-input {
    flex: 1;
    padding: 20px;
    border-radius: 50px;
    border: 2px solid var(--snap-yellow);
    background: var(--snap-black);
    color: var(--snap-white);
    font-size: 16px;
    outline: none;
    transition: all 0.3s;
}

.username-input:focus {
    box-shadow: 0 0 20px rgba(255, 252, 0, 0.3);
}

.btn-demo {
    padding: 20px 40px;
    background: var(--snap-yellow);
    color: var(--snap-black);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-demo:hover {
    transform: scale(1.05);
}

/* Pricing */
.pricing {
    position: relative;
    padding: 100px 5%;
    z-index: 1;
}

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

.pricing-card {
    background: rgba(255, 252, 0, 0.05);
    border: 2px solid rgba(255, 252, 0, 0.2);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card .btn-primary {
    margin-top: auto;
}

.pricing-card.featured {
    border-color: var(--snap-yellow);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--snap-yellow);
    color: var(--snap-black);
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
}

.pricing-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.price {
    font-size: 48px;
    font-weight: 900;
    color: var(--snap-yellow);
    margin-bottom: 10px;
}

.price span {
    font-size: 18px;
    color: #999;
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.pricing-features li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 252, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li:before {
    content: "✓";
    color: var(--snap-yellow);
    font-weight: 900;
    font-size: 20px;
}

.pricing-features li.no-border {
    border-bottom: none;
    flex-wrap: wrap;
}

.feature-sub-note {
    font-size: 11px;
    color: #666;
    font-style: italic;
    margin-top: 5px;
    margin-left: 30px;
    width: 100%;
    display: block;
}

/* Footer */
footer {
    position: relative;
    padding: 60px 5% 30px;
    background: rgba(0, 0, 0, 0.95);
    border-top: 2px solid var(--snap-yellow);
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--snap-yellow);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--snap-yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 252, 0, 0.1);
    color: #666;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        text-align: center;
        animation: fadeInUp 1s ease-out;
    }

    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .phone-mockup {
        width: 250px;
        height: 500px;
        transform: none;
    }

    .feature-badge {
        display: none;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .nav-center {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .cta-container {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .username-input-container {
        flex-direction: column;
    }

    .trust-indicators {
        gap: 25px;
    }

    .trust-item {
        min-width: 100px;
    }

    .hero-features {
        flex-direction: column;
        gap: 12px;
    }

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

/* Scroll Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Login Modal */
.login-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s;
    padding: 20px;
}

.login-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.login-modal {
    background: var(--snap-black);
    border: 2px solid var(--snap-yellow);
    border-radius: 30px;
    padding: 50px 40px;
    max-width: 480px;
    width: 100%;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s;
}

.login-modal-overlay.active .login-modal {
    transform: scale(1);
}

.login-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #666;
    font-size: 28px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.login-modal-close:hover {
    background: rgba(255, 252, 0, 0.1);
    color: var(--snap-yellow);
    transform: rotate(90deg);
}

.login-modal-header {
    text-align: center;
    margin-bottom: 35px;
}

.login-modal-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ghost-badge {
    width: 84px;
    height: 84px;
    background: var(--snap-yellow);
    box-shadow: 0 10px 30px rgba(255, 252, 0, 0.3);
    position: relative;

    /* Ghost silhouette mask (no external assets) */
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='black' d='M50 10 C30 10 18 24 18 42 V86 C18 86 26 78 32 86 C38 94 44 78 50 86 C56 94 62 78 68 86 C74 94 82 86 82 86 V42 C82 24 70 10 50 10 Z'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='black' d='M50 10 C30 10 18 24 18 42 V86 C18 86 26 78 32 86 C38 94 44 78 50 86 C56 94 62 78 68 86 C74 94 82 86 82 86 V42 C82 24 70 10 50 10 Z'/%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: 100% 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.ghost-badge-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    transform: translateY(2px);
}

.login-modal-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--snap-white);
    margin-bottom: 10px;
}

.login-modal-subtitle {
    font-size: 14px;
    color: #999;
}

.login-step {
    display: none;
}

.login-step.active {
    display: block;
}

.email-input {
    width: 100%;
    padding: 18px 24px;
    background: rgba(255, 252, 0, 0.05);
    border: 2px solid rgba(255, 252, 0, 0.2);
    border-radius: 50px;
    font-size: 16px;
    color: var(--snap-white);
    outline: none;
    transition: all 0.3s;
    margin-bottom: 22px;
}

.email-input::placeholder {
    color: #666;
}

.email-input:focus {
    border-color: var(--snap-yellow);
    background: rgba(255, 252, 0, 0.1);
}

.code-inputs {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-bottom: 24px;
}

.code-input {
    width: 64px;
    height: 64px;
    background: rgba(255, 252, 0, 0.05);
    border: 2px solid rgba(255, 252, 0, 0.2);
    border-radius: 16px;
    font-size: 28px;
    font-weight: 900;
    color: var(--snap-white);
    text-align: center;
    outline: none;
    transition: all 0.3s;
}

.code-input:focus {
    border-color: var(--snap-yellow);
    background: rgba(255, 252, 0, 0.1);
    transform: scale(1.05);
}

.btn-login-submit {
    width: 100%;
    background: var(--snap-yellow);
    color: var(--snap-black);
    padding: 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-login-submit:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 252, 0, 0.4);
}

.btn-login-submit:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.btn-login-back {
    width: 100%;
    background: transparent;
    color: var(--snap-yellow);
    padding: 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid var(--snap-yellow);
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 12px;
}

.btn-login-back:hover {
    background: rgba(255, 252, 0, 0.1);
}

.login-loader {
    width: 20px;
    height: 20px;
    border: 3px solid var(--snap-black);
    border-top-color: transparent;
    border-radius: 50%;
    animation: loginSpin 0.8s linear infinite;
    display: none;
}

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

.success-checkmark {
    width: 80px;
    height: 80px;
    background: var(--snap-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    animation: loginScaleIn 0.5s ease-out;
}

.success-checkmark svg {
    width: 50px;
    height: 50px;
    fill: var(--snap-black);
}

.success-text {
    font-size: 24px;
    font-weight: 900;
    color: var(--snap-white);
    margin-bottom: 10px;
}

.success-subtext {
    font-size: 14px;
    color: #999;
}

.resend-code {
    text-align: center;
    margin-top: 18px;
    font-size: 14px;
    color: #666;
}

.resend-code button {
    background: none;
    border: none;
    color: var(--snap-yellow);
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
}

.resend-code button:hover {
    color: #f0ed00;
}

@keyframes loginSpin {
    to { transform: rotate(360deg); }
}

@keyframes loginScaleIn {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@media (max-width: 520px) {
    .login-modal {
        padding: 40px 22px;
        border-radius: 24px;
    }
    .code-input {
        width: 54px;
        height: 58px;
        font-size: 24px;
    }
}

/* Custom Notification System */
.notification-container {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 420px;
}

.notification {
    background: var(--snap-black);
    border: 2px solid var(--snap-yellow);
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    animation: slideInRight 0.3s ease-out;
    position: relative;
    overflow: hidden;
}

.notification::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--snap-yellow);
    animation: notificationProgress 4s linear;
}

.notification.success {
    border-color: #00ff88;
}

.notification.success::before {
    background: #00ff88;
}

.notification.error {
    border-color: #ff4444;
}

.notification.error::before {
    background: #ff4444;
}

.notification.warning {
    border-color: #ffb800;
}

.notification.warning::before {
    background: #ffb800;
}

.notification-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-size: 16px;
    font-weight: 900;
    color: var(--snap-white);
    margin-bottom: 6px;
}

.notification-message {
    font-size: 14px;
    color: #ccc;
    line-height: 1.5;
}

.notification-close {
    background: transparent;
    border: none;
    color: #999;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    flex-shrink: 0;
}

.notification-close:hover {
    background: rgba(255, 252, 0, 0.1);
    color: var(--snap-white);
}

@keyframes slideInRight {
    from {
        transform: translateX(450px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes notificationProgress {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}

/* ========================================
   TRY IT DEMO SECTION
   ======================================== */

.try-demo-section {
    padding: 100px 5%;
    background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
    position: relative;
    z-index: 1;
}

.try-demo-section .demo-container {
    max-width: 1400px;
    margin: 0 auto;
}

.try-demo-section .demo-browser-frame {
    background: #0a0a0a;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 252, 0, 0.1);
}

.try-demo-section .demo-browser-header {
    background: #1a1a1a;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 252, 0, 0.1);
}

.try-demo-section .demo-browser-dots {
    display: flex;
    gap: 8px;
}

.try-demo-section .demo-browser-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.try-demo-section .demo-browser-dots .dot.red { background: #ff5f57; }
.try-demo-section .demo-browser-dots .dot.yellow { background: #febc2e; }
.try-demo-section .demo-browser-dots .dot.green { background: #28c840; }

.try-demo-section .demo-browser-url {
    flex: 1;
    background: #0a0a0a;
    padding: 8px 16px;
    border-radius: 8px;
    color: #888;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.try-demo-section .demo-browser-url .lock-icon {
    font-size: 12px;
}

/* Demo Dashboard Layout - Matches Real Dashboard */
.try-demo-section .demo-dashboard {
    display: flex;
    height: 650px;
    overflow: hidden;
    background: #0a0a0a;
}

/* Demo Sidebar - Exact Match to Real Dashboard */
.try-demo-section .demo-sidebar {
    width: 220px;
    background: #000;
    border-right: 1px solid rgba(255, 252, 0, 0.1);
    padding: 25px 0;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.try-demo-section .demo-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 20px 25px;
    border-bottom: 1px solid rgba(255, 252, 0, 0.1);
    margin-bottom: 25px;
}

.try-demo-section .demo-logo .demo-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--snap-yellow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.try-demo-section .demo-logo .demo-logo-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.try-demo-section .demo-logo span {
    font-weight: 900;
    font-size: 20px;
    color: var(--snap-yellow);
}

.try-demo-section .demo-nav {
    flex: 1;
    overflow-y: auto;
}

.try-demo-section .demo-nav-section {
    margin-bottom: 25px;
}

.try-demo-section .demo-nav-label {
    padding: 0 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #666;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.try-demo-section .demo-nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    color: #999;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    font-size: 14px;
}

.try-demo-section .demo-nav-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--snap-yellow);
    transform: scaleY(0);
    transition: transform 0.3s;
}

.try-demo-section .demo-nav-item:hover {
    color: var(--snap-yellow);
    background: rgba(255, 252, 0, 0.05);
}

.try-demo-section .demo-nav-item.disabled {
    cursor: pointer;
}

.try-demo-section .demo-nav-item.disabled:hover {
    color: var(--snap-yellow);
    background: rgba(255, 252, 0, 0.05);
}

.try-demo-section .demo-nav-item.active {
    color: var(--snap-yellow);
    background: rgba(255, 252, 0, 0.1);
}

.try-demo-section .demo-nav-item.active::before {
    transform: scaleY(1);
}

.try-demo-section .demo-nav-item-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.try-demo-section .demo-nav-icon {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.try-demo-section .demo-badge {
    background: var(--snap-yellow);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
    min-width: 24px;
    text-align: center;
}

.try-demo-section .demo-badge.secondary {
    background: rgba(255, 252, 0, 0.2);
    color: var(--snap-yellow);
}

.try-demo-section .demo-user-profile {
    padding: 15px 20px;
    border-top: 1px solid rgba(255, 252, 0, 0.1);
    margin-top: auto;
}

.try-demo-section .demo-user-profile-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 252, 0, 0.05);
    border-radius: 12px;
}

.try-demo-section .demo-user-profile img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.try-demo-section .demo-user-info {
    display: flex;
    flex-direction: column;
}

.try-demo-section .demo-user-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.try-demo-section .demo-user-plan {
    font-size: 11px;
    color: #666;
}

/* Demo Main Content - Exact Match */
.try-demo-section .demo-main {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
    background: #0a0a0a;
    min-width: 0;
}

.try-demo-section .demo-header {
    margin-bottom: 30px;
}

.try-demo-section .demo-header h2 {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 6px;
}

.try-demo-section .demo-header p {
    font-size: 14px;
    color: #666;
}

/* Demo Snaps Layout - Exact Match */
.try-demo-section .demo-snaps-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 25px;
}

/* Demo Filters Sidebar */
.try-demo-section .demo-filters {
    background: #1a1a1a;
    border: 1px solid rgba(255, 252, 0, 0.1);
    border-radius: 20px;
    padding: 20px;
    height: fit-content;
}

.try-demo-section .demo-filter-group {
    margin-bottom: 20px;
}

.try-demo-section .demo-filter-group:last-child {
    margin-bottom: 0;
}

.try-demo-section .demo-filter-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #666;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.try-demo-section .demo-user-filter {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 5px;
    border: 1px solid transparent;
}

.try-demo-section .demo-user-filter:hover {
    background: rgba(255, 252, 0, 0.05);
}

.try-demo-section .demo-user-filter.active {
    background: rgba(255, 252, 0, 0.1);
    border: 1px solid rgba(255, 252, 0, 0.3);
}

.try-demo-section .demo-filter-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.try-demo-section .demo-filter-avatar.all {
    background: var(--snap-yellow);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
}

.try-demo-section .demo-filter-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.try-demo-section .demo-filter-name {
    font-size: 13px;
    color: #fff;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.try-demo-section .demo-filter-count {
    font-size: 11px;
    color: #666;
}

.try-demo-section .demo-date-filters {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.try-demo-section .demo-date-btn {
    background: rgba(255, 252, 0, 0.05);
    border: 1px solid rgba(255, 252, 0, 0.1);
    color: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
}

.try-demo-section .demo-date-btn:hover {
    background: rgba(255, 252, 0, 0.1);
}

.try-demo-section .demo-date-btn.active {
    background: var(--snap-yellow);
    border-color: var(--snap-yellow);
    color: #000;
}

/* Demo Snaps Content */
.try-demo-section .demo-snaps-content {
    flex: 1;
    position: relative;
    min-width: 0;
}

.try-demo-section .demo-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 252, 0, 0.1);
    border-radius: 20px;
    margin-bottom: 20px;
}

.try-demo-section .demo-snaps-count {
    font-size: 14px;
    color: #999;
}

.try-demo-section .demo-snaps-count span {
    color: var(--snap-yellow);
    font-weight: 700;
}

.try-demo-section .demo-toolbar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.try-demo-section .demo-select-all {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
}

.try-demo-section .demo-select-all input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--snap-yellow);
}

.try-demo-section .demo-select-all label {
    cursor: pointer;
}

.try-demo-section .demo-media-filter {
    display: flex;
    gap: 8px;
    background: rgba(255, 252, 0, 0.05);
    padding: 4px;
    border-radius: 12px;
    border: 1px solid rgba(255, 252, 0, 0.1);
}

.try-demo-section .demo-media-btn {
    background: transparent;
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.try-demo-section .demo-media-btn:hover {
    background: rgba(255, 252, 0, 0.1);
}

.try-demo-section .demo-media-btn.active {
    background: var(--snap-yellow);
    color: #000;
}

.try-demo-section .demo-add-folder {
    background: var(--snap-yellow);
    border: none;
    color: #000;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.try-demo-section .demo-add-folder:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(255, 252, 0, 0.3);
}

/* Demo Snaps Grid - Exact Match */
.try-demo-section .demo-snaps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 8px;
}

.try-demo-section .demo-snaps-grid::-webkit-scrollbar {
    width: 6px;
}

.try-demo-section .demo-snaps-grid::-webkit-scrollbar-track {
    background: transparent;
}

.try-demo-section .demo-snaps-grid::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

.try-demo-section .demo-snaps-grid::-webkit-scrollbar-thumb:hover {
    background: #444;
}

.try-demo-section .demo-snap {
    position: relative;
    aspect-ratio: 9/16;
    background: linear-gradient(145deg, #222 0%, #111 100%);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.try-demo-section .demo-snap:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 252, 0, 0.2);
}

.try-demo-section .demo-snap.selected {
    border-color: var(--snap-yellow);
    box-shadow: 0 0 0 3px rgba(255, 252, 0, 0.2);
}

.try-demo-section .demo-snap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.try-demo-section .demo-snap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.try-demo-section .demo-snap:hover img,
.try-demo-section .demo-snap:hover video {
    transform: scale(1.02);
}

.try-demo-section .video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 252, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 5;
}

.try-demo-section .video-play-icon::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 15px solid var(--snap-black);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-left: 3px;
}

.try-demo-section .demo-snap-checkbox {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 24px;
    height: 24px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #fff;
    border-radius: 6px;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.try-demo-section .demo-snap.selected .demo-snap-checkbox {
    background: var(--snap-yellow);
    border-color: var(--snap-yellow);
}

.try-demo-section .demo-snap.selected .demo-snap-checkbox::after {
    content: '✓';
    color: #000;
    font-size: 14px;
    font-weight: 900;
}

.try-demo-section .demo-snap-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 12px 12px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    pointer-events: none;
}

.try-demo-section .demo-snap-user {
    display: block;
    font-size: 11px;
    color: var(--snap-yellow);
    font-weight: 700;
}

.try-demo-section .demo-snap-time {
    display: block;
    font-size: 10px;
    color: #999;
}

/* Demo Download Bar */
.try-demo-section .demo-download-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    border-top: 2px solid var(--snap-yellow);
    padding: 15px 20px;
    display: none;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    z-index: 100;
}

.try-demo-section .demo-download-bar.active {
    display: flex;
}

.try-demo-section .demo-download-info {
    font-size: 16px;
    font-weight: 900;
    color: #fff;
}

.try-demo-section .demo-download-info span {
    color: var(--snap-yellow);
}

.try-demo-section .demo-download-actions {
    display: flex;
    gap: 12px;
}

.try-demo-section .demo-download-actions button {
    background: #333;
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.try-demo-section .demo-download-actions button:hover {
    background: #444;
}

.try-demo-section .demo-download-actions .demo-download-btn {
    background: var(--snap-yellow);
    color: #000;
    font-weight: 700;
}

.try-demo-section .demo-download-actions .demo-download-btn:hover {
    background: #e6e300;
}

/* Demo CTA */
.try-demo-section .demo-cta {
    text-align: center;
    margin-top: 40px;
}

.try-demo-section .demo-cta p {
    color: #888;
    font-size: 16px;
    margin-bottom: 20px;
}

.try-demo-section .demo-cta .btn-primary {
    font-size: 16px;
    padding: 16px 32px;
}

/* Demo Lightbox */
.demo-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
}

.demo-lightbox-overlay.active {
    display: flex;
}

.demo-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.demo-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.demo-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.demo-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.demo-lightbox-nav.prev {
    left: 30px;
}

.demo-lightbox-nav.next {
    right: 30px;
}

.demo-lightbox-content {
    max-width: 450px;
    max-height: 80vh;
}

.demo-lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 16px;
}

.demo-lightbox-content video {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 16px;
    display: none;
}

.demo-lightbox-info {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.9);
    padding: 15px 25px;
    border-radius: 40px;
    border: 1px solid rgba(255, 252, 0, 0.2);
}

.demo-lightbox-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.demo-lightbox-user {
    display: flex;
    flex-direction: column;
}

.demo-lightbox-user span:first-child {
    color: var(--snap-yellow);
    font-weight: 700;
    font-size: 15px;
}

.demo-lightbox-user span:last-child {
    color: #888;
    font-size: 13px;
}

.demo-lightbox-download {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--snap-yellow);
    border: none;
    color: #000;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.demo-lightbox-download:hover {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 252, 0, 0.3);
}

/* Demo Alert Modal */
.demo-alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10001;
    display: none;
    justify-content: center;
    align-items: center;
}

.demo-alert-overlay.active {
    display: flex;
}

.demo-alert-modal {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    max-width: 420px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 252, 0, 0.1);
}

.demo-alert-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.demo-alert-modal h3 {
    font-size: 26px;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 900;
}

.demo-alert-modal p {
    color: #888;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 28px;
}

.demo-alert-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.demo-alert-cancel {
    background: #333;
    border: none;
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.demo-alert-cancel:hover {
    background: #444;
}

.demo-alert-login {
    background: var(--snap-yellow);
    border: none;
    color: #000;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.demo-alert-login:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(255, 252, 0, 0.3);
}

/* Responsive Demo */
@media (max-width: 1200px) {
    .try-demo-section .demo-snaps-layout {
        grid-template-columns: 200px 1fr;
    }
    
    .try-demo-section .demo-snaps-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}

@media (max-width: 1024px) {
    .try-demo-section .demo-dashboard {
        height: 550px;
    }
    
    .try-demo-section .demo-sidebar {
        width: 180px;
    }
    
    .try-demo-section .demo-main {
        padding: 20px;
    }
    
    .try-demo-section .demo-snaps-layout {
        grid-template-columns: 180px 1fr;
        gap: 20px;
    }
    
    .try-demo-section .demo-snaps-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
}

@media (max-width: 768px) {
    .try-demo-section .demo-dashboard {
        flex-direction: column;
        height: auto;
        min-height: 600px;
    }
    
    .try-demo-section .demo-sidebar {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 15px;
        gap: 10px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 252, 0, 0.1);
    }
    
    .try-demo-section .demo-logo {
        width: 100%;
        border-bottom: none;
        padding-bottom: 10px;
        margin-bottom: 0;
    }
    
    .try-demo-section .demo-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        width: 100%;
    }
    
    .try-demo-section .demo-nav-section {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        margin-bottom: 0;
    }
    
    .try-demo-section .demo-nav-label {
        display: none;
    }
    
    .try-demo-section .demo-nav-item {
        padding: 10px 15px;
        font-size: 13px;
        border-radius: 10px;
    }
    
    .try-demo-section .demo-nav-item::before {
        display: none;
    }
    
    .try-demo-section .demo-user-profile {
        display: none;
    }
    
    .try-demo-section .demo-main {
        padding: 20px;
    }
    
    .try-demo-section .demo-header h2 {
        font-size: 24px;
    }
    
    .try-demo-section .demo-snaps-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .try-demo-section .demo-filters {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .try-demo-section .demo-filter-group {
        margin-bottom: 0;
    }
    
    .try-demo-section .demo-snaps-grid {
        grid-template-columns: repeat(2, 1fr);
        max-height: 350px;
    }
    
    .try-demo-section .demo-toolbar {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .try-demo-section .demo-toolbar-actions {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .try-demo-section .demo-download-bar {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .try-demo-section .demo-download-actions {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
}