/* ===== GLOBAL RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg-dark: #0a0a0f;
  --bg-card: #111118;
  --bg-card2: #16161f;
  --bg-sidebar: #0d0d15;
  --border: rgba(255,255,255,0.08);
  --border-bright: rgba(255,255,255,0.15);
  --text: #f1f1f5;
  --text-muted: #8b8b9a;
  --text-dim: #4a4a5a;
  --purple: #7c3aed;
  --purple-light: #a855f7;
  --pink: #ec4899;
  --blue: #0ea5e9;
  --green: #10b981;
  --orange: #f59e0b;
  --red: #ef4444;
  --grad: linear-gradient(135deg, #7c3aed, #ec4899);
  --grad2: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #ec4899 100%);
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 40px rgba(124,58,237,0.3);
}
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', -apple-system, sans-serif; background: var(--bg-dark); color: var(--text); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
img { max-width: 100%; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: rgba(124,58,237,0.5); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--purple); }

/* ===== GRADIENT TEXT ===== */
.gradient-text { background: var(--grad2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ===== NAVBAR ===== */
.nav-bar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0 1.5rem; backdrop-filter: blur(20px); background: rgba(10,10,15,0.8); border-bottom: 1px solid var(--border); }
.nav-container { max-width: 1280px; margin: 0 auto; height: 64px; display: flex; align-items: center; gap: 2rem; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { display: flex; }
.logo-text { font-size: 1.25rem; font-weight: 700; color: var(--text); }
.logo-ai { color: var(--purple-light); }
.nav-links { display: flex; gap: 0.25rem; flex: 1; justify-content: center; }
.nav-link { padding: 0.5rem 1rem; border-radius: 8px; color: var(--text-muted); font-size: 0.9rem; font-weight: 500; transition: all 0.2s; }
.nav-link:hover, .nav-link.active { color: var(--text); background: rgba(255,255,255,0.06); }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.btn-ghost { padding: 0.5rem 1.25rem; border-radius: 10px; color: var(--text-muted); font-size: 0.9rem; font-weight: 500; transition: all 0.2s; }
.btn-ghost:hover { color: var(--text); background: rgba(255,255,255,0.06); }
.btn-primary-nav { padding: 0.5rem 1.25rem; border-radius: 10px; background: var(--grad); color: white; font-size: 0.9rem; font-weight: 600; transition: all 0.2s; display: flex; align-items: center; gap: 0.5rem; }
.btn-primary-nav:hover { transform: translateY(-1px); box-shadow: var(--shadow-glow); }
.mobile-menu-btn { display: none; color: var(--text-muted); font-size: 1.25rem; padding: 0.5rem; }
.mobile-menu { display: none; flex-direction: column; padding: 1rem; gap: 0.5rem; border-top: 1px solid var(--border); }
.mobile-menu a { padding: 0.75rem 1rem; border-radius: 8px; color: var(--text-muted); font-weight: 500; }
.mobile-menu .mobile-cta { background: var(--grad); color: white; text-align: center; border-radius: 10px; }

/* ===== HERO ===== */
.landing-body { background: var(--bg-dark); }
.hero-section { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; position: relative; overflow: hidden; padding: 5rem 1.5rem 3rem; }
.hero-bg-effects { position: absolute; inset: 0; pointer-events: none; }
.glow { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.4; }
.glow-1 { width: 600px; height: 600px; background: radial-gradient(circle, #7c3aed 0%, transparent 70%); top: -200px; left: -200px; animation: glow-move 8s ease-in-out infinite; }
.glow-2 { width: 400px; height: 400px; background: radial-gradient(circle, #ec4899 0%, transparent 70%); top: 20%; right: -100px; animation: glow-move 10s ease-in-out infinite reverse; }
.glow-3 { width: 300px; height: 300px; background: radial-gradient(circle, #0ea5e9 0%, transparent 70%); bottom: 10%; left: 30%; animation: glow-move 12s ease-in-out infinite; }
@keyframes glow-move { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(30px, -20px) scale(1.1); } }
.particles { position: absolute; inset: 0; }

.hero-container { position: relative; text-align: center; max-width: 900px; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1.25rem; border: 1px solid rgba(124,58,237,0.4); border-radius: 100px; background: rgba(124,58,237,0.1); color: var(--purple-light); font-size: 0.85rem; font-weight: 500; margin-bottom: 2rem; }
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(0.9); } }
.hero-title { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 1.5rem; color: white; }
.hero-subtitle { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--text-muted); margin-bottom: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-cta-group { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 3rem; flex-wrap: wrap; }
.btn-hero-primary { display: inline-flex; align-items: center; gap: 0.75rem; padding: 0.875rem 2rem; border-radius: 14px; background: var(--grad); color: white; font-size: 1rem; font-weight: 600; transition: all 0.3s; position: relative; overflow: hidden; }
.btn-hero-primary::before { content: ''; position: absolute; inset: 0; background: white; opacity: 0; transition: opacity 0.3s; }
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(124,58,237,0.4); }
.btn-hero-primary:hover::before { opacity: 0.08; }
.btn-hero-secondary { display: inline-flex; align-items: center; gap: 0.75rem; padding: 0.875rem 1.75rem; border-radius: 14px; border: 1px solid var(--border-bright); color: var(--text); font-size: 1rem; font-weight: 500; transition: all 0.3s; background: rgba(255,255,255,0.04); }
.btn-hero-secondary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.25); }
.play-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; }
.hero-stats { display: flex; align-items: center; justify-content: center; gap: 2rem; padding: 2rem; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 20px; backdrop-filter: blur(10px); flex-wrap: wrap; }
.stat { text-align: center; }
.stat-num { display: block; font-size: 1.75rem; font-weight: 800; background: var(--grad2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* Floating Cards */
.floating-cards { position: absolute; right: 5%; top: 20%; display: flex; flex-direction: column; gap: 1rem; z-index: 1; }
.float-card { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; backdrop-filter: blur(10px); min-width: 180px; animation: float 3s ease-in-out infinite; }
.float-card.card-1 { animation-delay: 0s; }
.float-card.card-2 { animation-delay: 1s; }
.float-card.card-3 { animation-delay: 2s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.card-preview { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.25rem; }
.card-title { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); }
.card-time { font-size: 0.75rem; color: var(--text-muted); }

/* ===== MARQUEE ===== */
.marquee-section { overflow: hidden; padding: 2rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.01); }
.marquee-track { display: flex; }
.marquee-content { display: flex; gap: 1rem; padding-right: 1rem; animation: marquee 30s linear infinite; flex-shrink: 0; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }
.marquee-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1.5rem; border-radius: 12px; border: 1px solid var(--border); white-space: nowrap; font-size: 0.9rem; font-weight: 500; color: var(--text); flex-shrink: 0; }
.marquee-icon { font-size: 1.25rem; }

/* ===== SECTIONS ===== */
.section-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-badge { display: inline-block; padding: 0.4rem 1rem; border-radius: 100px; background: rgba(124,58,237,0.15); border: 1px solid rgba(124,58,237,0.3); color: var(--purple-light); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; }
.section-title { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 800; line-height: 1.15; margin-bottom: 1rem; color: white; }
.section-subtitle { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ===== FEATURES ===== */
.features-section { padding: 6rem 0; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-large { grid-column: span 2; }
.feature-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 2rem; transition: all 0.3s; position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; inset: 0; background: var(--grad); opacity: 0; transition: opacity 0.3s; }
.feature-card:hover { border-color: rgba(124,58,237,0.4); transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.feature-icon-wrap { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.25rem; }
.feature-icon-wrap.purple { background: rgba(124,58,237,0.2); color: var(--purple-light); }
.feature-icon-wrap.pink { background: rgba(236,72,153,0.2); color: var(--pink); }
.feature-icon-wrap.blue { background: rgba(14,165,233,0.2); color: var(--blue); }
.feature-icon-wrap.green { background: rgba(16,185,129,0.2); color: var(--green); }
.feature-icon-wrap.orange { background: rgba(245,158,11,0.2); color: var(--orange); }
.feature-icon-wrap.teal { background: rgba(20,184,166,0.2); color: #14b8a6; }
.feature-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.75rem; color: white; }
.feature-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.feature-demo { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.chat-bubble { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.75rem 1rem; border-radius: 12px; font-size: 0.85rem; }
.chat-bubble.user { background: rgba(124,58,237,0.15); border: 1px solid rgba(124,58,237,0.2); }
.chat-bubble.ai { background: rgba(255,255,255,0.04); border: 1px solid var(--border); }
.chat-bubble.user i { color: var(--purple-light); margin-top: 2px; flex-shrink: 0; }
.ai-avatar { width: 24px; height: 24px; border-radius: 6px; background: var(--grad); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; flex-shrink: 0; color: white; }
.feature-visual { margin-top: 1.5rem; }
.lip-sync-demo .audio-wave { display: flex; align-items: center; justify-content: center; gap: 3px; height: 50px; }
.wave-bar { width: 4px; background: var(--grad); border-radius: 2px; animation: wave 1s ease-in-out infinite alternate; }
@keyframes wave { 0% { height: 8px; } 100% { height: 40px; } }
.chars-demo { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.char-avatar { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 700; color: white; }
.char-arrow { color: var(--text-muted); font-size: 0.9rem; }
.char-check { display: flex; align-items: center; gap: 0.4rem; color: var(--green); font-size: 0.8rem; font-weight: 600; margin-top: 0.5rem; width: 100%; }
.timeline-demo { display: flex; flex-direction: column; gap: 6px; padding: 0.75rem; background: rgba(255,255,255,0.03); border-radius: 8px; }
.timeline-track { display: flex; gap: 4px; height: 20px; }
.tl-clip { height: 100%; border-radius: 4px; opacity: 0.8; }
.styles-mini { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.style-pill { padding: 0.35rem 0.85rem; border-radius: 100px; background: rgba(255,255,255,0.06); border: 1px solid var(--border); font-size: 0.8rem; color: var(--text-muted); }
.export-demo { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1rem; }
.export-btn-demo { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; border-radius: 8px; background: rgba(255,255,255,0.06); border: 1px solid var(--border); font-size: 0.8rem; color: var(--text-muted); }

/* ===== HOW IT WORKS ===== */
.howitworks-section { padding: 6rem 0; background: linear-gradient(180deg, transparent 0%, rgba(124,58,237,0.03) 50%, transparent 100%); }
.steps-grid { display: flex; align-items: center; gap: 1rem; }
.step-card { flex: 1; background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 2rem; text-align: center; transition: all 0.3s; }
.step-card:hover { border-color: rgba(124,58,237,0.4); transform: translateY(-4px); }
.step-number { font-size: 0.75rem; font-weight: 800; color: var(--purple-light); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; opacity: 0.7; }
.step-icon { width: 64px; height: 64px; border-radius: 18px; background: rgba(124,58,237,0.15); color: var(--purple-light); font-size: 1.75rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.step-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; color: white; }
.step-card p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.7; }
.step-arrow { color: var(--text-dim); font-size: 1.5rem; flex-shrink: 0; }

/* ===== STYLES ===== */
.styles-section { padding: 6rem 0; }
.styles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2rem; }
.style-card { border-radius: 16px; overflow: hidden; cursor: pointer; transition: all 0.3s; border: 1px solid var(--border); background: var(--bg-card); }
.style-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); border-color: rgba(124,58,237,0.4); }
.style-preview { height: 180px; position: relative; display: flex; align-items: center; justify-content: center; }
.style-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; font-size: 2.5rem; color: white; }
.style-card:hover .style-overlay { opacity: 1; }
.style-emoji { font-size: 3rem; position: relative; z-index: 1; }
.style-info { display: flex; align-items: center; justify-content: space-between; padding: 0.875rem 1rem; }
.style-name { font-size: 0.9rem; font-weight: 600; color: var(--text); }
.style-tag { font-size: 0.7rem; padding: 0.25rem 0.6rem; border-radius: 100px; background: rgba(124,58,237,0.2); color: var(--purple-light); border: 1px solid rgba(124,58,237,0.3); }
.styles-cta { text-align: center; }
.btn-outline-large { display: inline-flex; align-items: center; gap: 0.75rem; padding: 0.875rem 2rem; border-radius: 14px; border: 1px solid var(--border-bright); color: var(--text); font-size: 0.95rem; font-weight: 600; transition: all 0.3s; }
.btn-outline-large:hover { background: rgba(255,255,255,0.06); border-color: rgba(124,58,237,0.5); }

/* ===== GALLERY ===== */
.gallery-section { padding: 6rem 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.gallery-card { border-radius: 16px; overflow: hidden; cursor: pointer; background: var(--bg-card); border: 1px solid var(--border); transition: all 0.3s; }
.gallery-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.5); border-color: rgba(124,58,237,0.4); }
.gallery-thumb { height: 200px; position: relative; display: flex; align-items: center; justify-content: center; }
.gallery-emoji { font-size: 3.5rem; z-index: 1; }
.gallery-play { position: absolute; inset: 0; background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; font-size: 2rem; color: white; }
.gallery-card:hover .gallery-play { opacity: 1; }
.gallery-style-tag { position: absolute; top: 0.75rem; right: 0.75rem; padding: 0.25rem 0.75rem; border-radius: 100px; background: rgba(0,0,0,0.6); border: 1px solid var(--border-bright); font-size: 0.75rem; font-weight: 500; color: white; }
.gallery-meta { padding: 1rem; display: flex; justify-content: space-between; align-items: center; }
.gallery-title { font-size: 0.9rem; font-weight: 600; color: var(--text); }
.gallery-creator { font-size: 0.8rem; color: var(--text-muted); }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 6rem 0; background: linear-gradient(180deg, transparent 0%, rgba(124,58,237,0.03) 50%, transparent 100%); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 1.75rem; transition: all 0.3s; }
.testimonial-card:hover { border-color: rgba(124,58,237,0.3); transform: translateY(-2px); }
.t-stars { font-size: 0.9rem; margin-bottom: 1rem; }
.t-text { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 0.75rem; }
.t-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; font-weight: 700; color: white; flex-shrink: 0; }
.t-name { display: block; font-weight: 600; font-size: 0.9rem; color: var(--text); }
.t-role { font-size: 0.8rem; color: var(--text-muted); }

/* ===== CTA ===== */
.cta-section { padding: 6rem 0; text-align: center; position: relative; }
.cta-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 600px; height: 300px; background: radial-gradient(ellipse, rgba(124,58,237,0.2) 0%, transparent 70%); pointer-events: none; }
.cta-title { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 900; line-height: 1.15; margin-bottom: 1.25rem; color: white; }
.cta-subtitle { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 2.5rem; }
.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.cta-btn { font-size: 1.05rem; padding: 1rem 2.25rem; }
.cta-note { color: var(--text-dim); font-size: 0.85rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.cta-note i { color: var(--green); }

/* ===== FOOTER ===== */
.footer { padding: 4rem 0 0; border-top: 1px solid var(--border); }
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; padding-bottom: 3rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin: 0.75rem 0 1.5rem; line-height: 1.6; }
.social-links { display: flex; gap: 0.75rem; }
.social-links a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.06); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all 0.2s; font-size: 0.9rem; }
.social-links a:hover { background: rgba(124,58,237,0.2); border-color: rgba(124,58,237,0.5); color: var(--purple-light); }
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.footer-col h4 { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text); margin-bottom: 1.25rem; }
.footer-col a { display: block; color: var(--text-muted); font-size: 0.875rem; margin-bottom: 0.75rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding: 1.5rem; text-align: center; color: var(--text-dim); font-size: 0.85rem; }

/* ===== APP LAYOUT ===== */
.app-body { background: var(--bg-dark); min-height: 100vh; display: flex; }
.sidebar { width: 260px; background: var(--bg-sidebar); border-right: 1px solid var(--border); display: flex; flex-direction: column; position: fixed; left: 0; top: 0; bottom: 0; z-index: 100; transition: transform 0.3s; }
.sidebar-top { padding: 1.25rem; border-bottom: 1px solid var(--border); }
.sidebar-logo { display: flex; align-items: center; gap: 0.75rem; padding: 0.5rem; margin-bottom: 1rem; font-size: 1rem; font-weight: 700; color: var(--text); }
.btn-new-project { width: 100%; padding: 0.75rem; border-radius: 12px; background: var(--grad); color: white; font-size: 0.875rem; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 0.5rem; transition: all 0.3s; }
.btn-new-project:hover { transform: translateY(-1px); box-shadow: var(--shadow-glow); }
.sidebar-nav { flex: 1; padding: 1rem; overflow-y: auto; }
.nav-section-label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); padding: 0.5rem 0.75rem; margin-top: 0.5rem; }
.sidebar-link { display: flex; align-items: center; gap: 0.75rem; padding: 0.7rem 0.875rem; border-radius: 10px; color: var(--text-muted); font-size: 0.875rem; font-weight: 500; transition: all 0.2s; margin-bottom: 2px; }
.sidebar-link:hover { background: rgba(255,255,255,0.06); color: var(--text); }
.sidebar-link.active { background: rgba(124,58,237,0.15); color: var(--purple-light); border: 1px solid rgba(124,58,237,0.25); }
.sidebar-link i { width: 18px; text-align: center; flex-shrink: 0; font-size: 0.9rem; }
.sidebar-link span:not(.badge) { flex: 1; }
.badge { padding: 0.1rem 0.5rem; border-radius: 100px; background: rgba(255,255,255,0.1); font-size: 0.7rem; font-weight: 600; }
.badge-pro { background: linear-gradient(135deg, rgba(245,158,11,0.3), rgba(239,68,68,0.3)); color: #fbbf24; border: 1px solid rgba(245,158,11,0.3); }
.sidebar-footer { padding: 1rem; border-top: 1px solid var(--border); }
.credits-bar { margin-bottom: 1rem; }
.credits-info { display: flex; justify-content: space-between; font-size: 0.8rem; margin-bottom: 0.5rem; color: var(--text-muted); }
.credits-count { color: var(--text); font-weight: 600; }
.credits-progress { height: 6px; border-radius: 3px; background: rgba(255,255,255,0.08); overflow: hidden; }
.credits-fill { height: 100%; border-radius: 3px; background: var(--grad); }
.user-profile { display: flex; align-items: center; gap: 0.75rem; padding: 0.5rem; border-radius: 12px; }
.user-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; color: white; flex-shrink: 0; }
.user-info { flex: 1; }
.user-name { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); }
.user-plan { font-size: 0.75rem; color: var(--text-muted); }
.user-profile button { color: var(--text-dim); transition: color 0.2s; }
.user-profile button:hover { color: var(--text); }

/* App Main */
.app-main { flex: 1; margin-left: 260px; display: flex; flex-direction: column; min-height: 100vh; transition: margin-left 0.3s; }
.app-topbar { height: 60px; padding: 0 1.5rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 1rem; background: var(--bg-dark); position: sticky; top: 0; z-index: 50; }
.sidebar-toggle { color: var(--text-muted); font-size: 1.1rem; padding: 0.5rem; border-radius: 8px; transition: all 0.2s; }
.sidebar-toggle:hover { background: rgba(255,255,255,0.06); color: var(--text); }
.topbar-title { flex: 1; font-size: 1rem; font-weight: 600; color: var(--text); }
.topbar-actions { display: flex; align-items: center; gap: 0.75rem; }
.topbar-btn { width: 36px; height: 36px; border-radius: 10px; border: 1px solid var(--border); color: var(--text-muted); display: flex; align-items: center; justify-content: center; transition: all 0.2s; position: relative; }
.topbar-btn:hover { background: rgba(255,255,255,0.06); color: var(--text); }
.notif-dot { position: absolute; top: 6px; right: 6px; width: 7px; height: 7px; background: var(--pink); border-radius: 50%; border: 2px solid var(--bg-dark); }
.btn-upgrade { display: flex; align-items: center; gap: 0.5rem; padding: 0.45rem 1rem; border-radius: 8px; background: linear-gradient(135deg, rgba(245,158,11,0.2), rgba(239,68,68,0.2)); border: 1px solid rgba(245,158,11,0.3); color: #fbbf24; font-size: 0.8rem; font-weight: 600; transition: all 0.2s; }
.btn-upgrade:hover { background: linear-gradient(135deg, rgba(245,158,11,0.3), rgba(239,68,68,0.3)); }

/* App Content */
.app-content { padding: 1.5rem; flex: 1; }
.welcome-banner { background: linear-gradient(135deg, rgba(124,58,237,0.15) 0%, rgba(236,72,153,0.1) 100%); border: 1px solid rgba(124,58,237,0.25); border-radius: 20px; padding: 1.75rem 2rem; display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.75rem; }
.welcome-text h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.4rem; color: white; }
.welcome-text p { color: var(--text-muted); font-size: 0.9rem; }
.wave { display: inline-block; animation: wave-anim 2s infinite; }
@keyframes wave-anim { 0%, 100% { transform: rotate(0); } 50% { transform: rotate(20deg); } }
.art-circle { width: 60px; height: 60px; border-radius: 50%; background: var(--grad); display: flex; align-items: center; justify-content: center; font-size: 1.75rem; animation: float 3s ease-in-out infinite; }

/* Quick Create */
.quick-create-section { margin-bottom: 1.75rem; }
.section-label { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 1rem; }
.quick-create-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 0.75rem; }
.quick-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 1rem 0.5rem; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; cursor: pointer; transition: all 0.25s; }
.quick-card:hover { border-color: rgba(124,58,237,0.4); background: rgba(124,58,237,0.1); transform: translateY(-2px); }
.qc-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.quick-card span { font-size: 0.75rem; font-weight: 500; color: var(--text-muted); text-align: center; }

/* Creator Section */
.creator-section { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; margin-bottom: 1.75rem; }
.creator-header { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; border-bottom: 1px solid var(--border); }
.style-selector-mini { display: flex; align-items: center; gap: 0.5rem; padding: 0.4rem 0.875rem; border-radius: 8px; border: 1px solid var(--border); background: rgba(255,255,255,0.03); font-size: 0.8rem; color: var(--text-muted); cursor: pointer; transition: all 0.2s; }
.style-selector-mini:hover { border-color: rgba(124,58,237,0.4); color: var(--text); }
.chat-container { padding: 1.25rem; min-height: 200px; max-height: 350px; overflow-y: auto; display: flex; flex-direction: column; gap: 1rem; }
.chat-welcome { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 1rem; }
.chat-welcome-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.chat-welcome h4 { font-size: 1rem; font-weight: 700; color: white; margin-bottom: 0.5rem; }
.chat-welcome p { color: var(--text-muted); font-size: 0.875rem; margin-bottom: 1.25rem; }
.suggestion-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.chip { padding: 0.45rem 0.875rem; border-radius: 100px; border: 1px solid var(--border); background: rgba(255,255,255,0.04); color: var(--text-muted); font-size: 0.8rem; cursor: pointer; transition: all 0.2s; }
.chip:hover { border-color: rgba(124,58,237,0.5); background: rgba(124,58,237,0.1); color: var(--purple-light); }
.chat-msg { display: flex; gap: 0.75rem; max-width: 85%; }
.chat-msg.user { align-self: flex-end; flex-direction: row-reverse; }
.chat-msg-avatar { width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.8rem; font-weight: 700; color: white; }
.chat-msg.user .chat-msg-avatar { background: var(--grad); }
.chat-msg.ai .chat-msg-avatar { background: rgba(255,255,255,0.1); color: var(--text-muted); }
.chat-msg-text { padding: 0.75rem 1rem; border-radius: 14px; font-size: 0.875rem; line-height: 1.6; }
.chat-msg.user .chat-msg-text { background: rgba(124,58,237,0.2); border: 1px solid rgba(124,58,237,0.3); color: var(--text); border-bottom-right-radius: 4px; }
.chat-msg.ai .chat-msg-text { background: var(--bg-card2); border: 1px solid var(--border); color: var(--text); border-bottom-left-radius: 4px; }
.chat-typing { display: flex; align-items: center; gap: 4px; padding: 0.75rem 1rem; }
.typing-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--text-dim); animation: typing 1.4s infinite; }
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%, 80%, 100% { transform: scale(1); opacity: 0.4; } 40% { transform: scale(1.2); opacity: 1; } }
.chat-input-area { padding: 1rem 1.25rem; border-top: 1px solid var(--border); }
.chat-input-container { display: flex; align-items: flex-end; gap: 0.5rem; background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 16px; padding: 0.5rem; }
.chat-input-container:focus-within { border-color: rgba(124,58,237,0.5); }
.input-action-btn { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all 0.2s; flex-shrink: 0; }
.input-action-btn:hover { background: rgba(255,255,255,0.08); color: var(--text); }
.chat-textarea { flex: 1; background: none; border: none; outline: none; color: var(--text); font-size: 0.875rem; resize: none; max-height: 120px; line-height: 1.5; padding: 0.25rem; }
.chat-textarea::placeholder { color: var(--text-dim); }
.input-actions { display: flex; align-items: center; gap: 0.25rem; }
.send-btn { width: 36px; height: 36px; border-radius: 10px; background: var(--grad); color: white; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; transition: all 0.2s; flex-shrink: 0; }
.send-btn:hover { transform: scale(1.05); box-shadow: 0 4px 12px rgba(124,58,237,0.4); }
.input-hints { display: flex; justify-content: space-between; margin-top: 0.5rem; font-size: 0.75rem; color: var(--text-dim); }
.credit-info { color: var(--text-dim); }

/* Projects Grid */
.recent-section { }
.section-header-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.see-all-btn { font-size: 0.8rem; color: var(--purple-light); display: flex; align-items: center; gap: 0.4rem; transition: color 0.2s; }
.see-all-btn:hover { color: white; }
.projects-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.project-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; cursor: pointer; transition: all 0.3s; position: relative; }
.project-card:hover { border-color: rgba(124,58,237,0.4); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.4); }
.project-thumb { height: 140px; position: relative; display: flex; align-items: center; justify-content: center; }
.project-emoji { font-size: 2.5rem; z-index: 1; }
.project-play { position: absolute; inset: 0; background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; font-size: 1.5rem; color: white; }
.project-card:hover .project-play { opacity: 1; }
.project-info { padding: 0.875rem; }
.project-name { display: block; font-size: 0.875rem; font-weight: 600; color: var(--text); margin-bottom: 0.35rem; }
.project-meta { display: flex; justify-content: space-between; }
.project-style { font-size: 0.75rem; color: var(--purple-light); }
.project-time { font-size: 0.75rem; color: var(--text-dim); }
.project-actions { position: absolute; top: 0.5rem; right: 0.5rem; display: flex; gap: 0.25rem; opacity: 0; transition: opacity 0.3s; }
.project-card:hover .project-actions { opacity: 1; }
.project-actions button { width: 28px; height: 28px; border-radius: 7px; background: rgba(0,0,0,0.7); border: 1px solid rgba(255,255,255,0.15); color: var(--text-muted); font-size: 0.75rem; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.project-actions button:hover { background: var(--grad); color: white; border-color: transparent; }
.project-add { display: flex; align-items: center; justify-content: center; border-style: dashed; cursor: pointer; }
.add-project-inner { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; padding: 2.5rem; }
.add-icon { width: 48px; height: 48px; border-radius: 12px; border: 2px dashed var(--text-dim); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; color: var(--text-dim); }
.project-add span { font-size: 0.8rem; color: var(--text-dim); }
.project-add:hover .add-icon { border-color: var(--purple-light); color: var(--purple-light); }
.project-add:hover span { color: var(--purple-light); }

/* ===== MODALS ===== */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.8); backdrop-filter: blur(8px); display: none; align-items: center; justify-content: center; z-index: 1000; padding: 1rem; }
.modal-overlay.active { display: flex; }
.modal { background: var(--bg-card); border: 1px solid var(--border-bright); border-radius: 24px; width: 100%; overflow: hidden; animation: modal-in 0.3s ease; }
@keyframes modal-in { from { opacity: 0; transform: scale(0.95) translateY(10px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border); }
.modal-header h3 { font-size: 1rem; font-weight: 700; color: white; }
.modal-header button { width: 32px; height: 32px; border-radius: 8px; color: var(--text-muted); display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.modal-header button:hover { background: rgba(255,255,255,0.08); color: var(--text); }

/* Style Modal */
.style-modal { max-width: 600px; }
.style-picker-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 1.5rem; }
.style-picker-item { border-radius: 14px; overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: all 0.25s; }
.style-picker-item:hover, .style-picker-item.selected { border-color: var(--purple); }
.style-picker-thumb { height: 80px; display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.style-picker-item span { display: block; text-align: center; font-size: 0.75rem; font-weight: 600; padding: 0.4rem; background: var(--bg-dark); color: var(--text-muted); }

/* Gen Modal */
.gen-modal { max-width: 420px; padding: 2.5rem; text-align: center; }
.gen-animation { display: flex; justify-content: center; margin-bottom: 1.5rem; }
.gen-spinner { position: relative; width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; }
.spinner-ring { position: absolute; border-radius: 50%; border: 3px solid transparent; }
.spinner-ring { width: 70px; height: 70px; border-top-color: var(--purple); animation: spin 1s linear infinite; }
.ring2 { width: 55px; height: 55px; border-top-color: var(--pink); animation: spin 1.5s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.spinner-icon { font-size: 1.75rem; z-index: 1; animation: float 2s ease-in-out infinite; }
.gen-modal h3 { font-size: 1.2rem; font-weight: 700; color: white; margin-bottom: 0.5rem; }
.gen-modal p { color: var(--text-muted); font-size: 0.875rem; margin-bottom: 1.5rem; }
.gen-progress-bar { height: 6px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; margin-bottom: 1.5rem; }
.gen-progress-fill { height: 100%; background: var(--grad); border-radius: 3px; transition: width 0.5s ease; }
.gen-steps { display: flex; flex-direction: column; gap: 0.5rem; text-align: left; margin-bottom: 1.5rem; }
.gen-step { display: flex; align-items: center; gap: 0.75rem; padding: 0.5rem; border-radius: 8px; font-size: 0.85rem; color: var(--text-dim); }
.gen-step.active { color: var(--purple-light); background: rgba(124,58,237,0.1); }
.gen-step.done { color: var(--green); }
.gen-step i { font-size: 0.9rem; }
.cancel-gen-btn { color: var(--text-muted); font-size: 0.85rem; padding: 0.5rem 1rem; border-radius: 8px; transition: all 0.2s; }
.cancel-gen-btn:hover { background: rgba(255,255,255,0.06); color: var(--text); }

/* Result Modal */
.result-modal { max-width: 480px; }
.result-preview { height: 240px; background: linear-gradient(135deg, #1a1a2e, #7c3aed); display: flex; align-items: center; justify-content: center; position: relative; cursor: pointer; }
.result-video-placeholder { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.result-icon { font-size: 4rem; }
.result-play-btn { width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,0.15); border: 2px solid rgba(255,255,255,0.3); display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem; transition: all 0.2s; }
.result-play-btn:hover { background: rgba(255,255,255,0.25); }
.result-info { padding: 1.5rem; }
.result-info h3 { font-size: 1.1rem; font-weight: 700; color: white; margin-bottom: 0.5rem; }
.result-info p { color: var(--text-muted); font-size: 0.875rem; margin-bottom: 1.25rem; }
.result-actions { display: flex; gap: 0.75rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.btn-result-primary { display: flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1.25rem; border-radius: 10px; background: var(--grad); color: white; font-size: 0.875rem; font-weight: 600; transition: all 0.2s; }
.btn-result-primary:hover { transform: translateY(-1px); }
.btn-result-secondary { display: flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1.25rem; border-radius: 10px; border: 1px solid var(--border-bright); color: var(--text); font-size: 0.875rem; font-weight: 500; transition: all 0.2s; }
.btn-result-secondary:hover { background: rgba(255,255,255,0.06); }
.close-result-btn { width: 100%; padding: 0.6rem; border-radius: 10px; border: 1px solid var(--border); color: var(--text-muted); font-size: 0.875rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem; transition: all 0.2s; }
.close-result-btn:hover { background: rgba(255,255,255,0.04); color: var(--text); }

/* ===== EDITOR ===== */
.editor-body { background: #0a0a10; display: flex; flex-direction: column; height: 100vh; overflow: hidden; }
.editor-layout { display: flex; flex-direction: column; height: 100vh; }
.editor-topbar { height: 52px; background: var(--bg-card); border-bottom: 1px solid var(--border); display: flex; align-items: center; padding: 0 1rem; gap: 1rem; flex-shrink: 0; }
.editor-left { display: flex; align-items: center; gap: 0.75rem; flex: 1; }
.editor-back { color: var(--text-muted); width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); transition: all 0.2s; }
.editor-back:hover { background: rgba(255,255,255,0.06); color: var(--text); }
.editor-title-wrap { display: flex; align-items: center; gap: 0.5rem; }
.project-name-input { background: none; border: none; outline: none; color: var(--text); font-size: 0.9rem; font-weight: 600; }
.project-name-input:focus { border-bottom: 1px solid var(--purple); }
.editor-title-wrap button { color: var(--text-dim); opacity: 0; transition: all 0.2s; font-size: 0.75rem; }
.editor-title-wrap:hover button { opacity: 1; }
.editor-saved { font-size: 0.75rem; color: var(--text-dim); display: flex; align-items: center; gap: 0.4rem; }
.editor-center { display: flex; align-items: center; gap: 0.5rem; }
.editor-btn { display: flex; align-items: center; gap: 0.5rem; padding: 0.4rem 0.875rem; border-radius: 8px; border: 1px solid var(--border); background: rgba(255,255,255,0.04); color: var(--text-muted); font-size: 0.8rem; transition: all 0.2s; }
.editor-btn:hover { background: rgba(255,255,255,0.08); color: var(--text); }
.editor-zoom { display: flex; align-items: center; gap: 0.5rem; padding: 0.3rem 0.75rem; border-radius: 8px; border: 1px solid var(--border); background: rgba(255,255,255,0.03); }
.editor-zoom button { color: var(--text-muted); font-size: 0.75rem; width: 20px; height: 20px; border-radius: 4px; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.editor-zoom button:hover { background: rgba(255,255,255,0.1); color: var(--text); }
.editor-zoom span { font-size: 0.8rem; color: var(--text-muted); min-width: 36px; text-align: center; }
.editor-right { display: flex; align-items: center; gap: 0.5rem; flex: 1; justify-content: flex-end; }
.btn-export { display: flex; align-items: center; gap: 0.5rem; padding: 0.45rem 1.1rem; border-radius: 8px; background: var(--grad); color: white; font-size: 0.825rem; font-weight: 600; transition: all 0.2s; }
.btn-export:hover { transform: translateY(-1px); box-shadow: var(--shadow-glow); }
.btn-share-editor { width: 34px; height: 34px; border-radius: 8px; border: 1px solid var(--border); color: var(--text-muted); display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.btn-share-editor:hover { background: rgba(255,255,255,0.06); color: var(--text); }
.editor-main { display: flex; flex: 1; overflow: hidden; }
.editor-scenes-panel { width: 200px; background: var(--bg-sidebar); border-right: 1px solid var(--border); display: flex; flex-direction: column; flex-shrink: 0; }
.panel-header { display: flex; align-items: center; justify-content: space-between; padding: 0.875rem; border-bottom: 1px solid var(--border); font-size: 0.8rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.add-scene-btn { width: 26px; height: 26px; border-radius: 6px; background: rgba(124,58,237,0.2); border: 1px solid rgba(124,58,237,0.3); color: var(--purple-light); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; transition: all 0.2s; }
.add-scene-btn:hover { background: rgba(124,58,237,0.35); }
.scenes-list { flex: 1; overflow-y: auto; padding: 0.75rem; display: flex; flex-direction: column; gap: 0.5rem; }
.scene-item { display: flex; align-items: center; gap: 0.625rem; padding: 0.5rem; border-radius: 10px; cursor: pointer; transition: all 0.2s; border: 1px solid transparent; }
.scene-item:hover { background: rgba(255,255,255,0.04); }
.scene-item.active { background: rgba(124,58,237,0.15); border-color: rgba(124,58,237,0.3); }
.scene-thumb { width: 48px; height: 36px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.scene-info { flex: 1; }
.scene-info span { display: block; font-size: 0.8rem; font-weight: 500; color: var(--text); }
.scene-duration { font-size: 0.7rem; color: var(--text-muted) !important; }
.add-scene-full { margin-top: 0.25rem; padding: 0.625rem; border-radius: 10px; border: 1px dashed var(--text-dim); color: var(--text-dim); font-size: 0.8rem; display: flex; align-items: center; justify-content: center; gap: 0.4rem; transition: all 0.2s; }
.add-scene-full:hover { border-color: var(--purple-light); color: var(--purple-light); }
.editor-preview-area { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; background: #050508; padding: 1.5rem; }
.preview-canvas { width: 100%; max-width: 640px; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 20px 60px rgba(0,0,0,0.6); }
.canvas-content { aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; position: relative; }
.preview-scene-emoji { font-size: 5rem; }
.preview-overlay { position: absolute; bottom: 1rem; left: 1rem; right: 1rem; }
.scene-label { display: inline-block; padding: 0.25rem 0.75rem; border-radius: 6px; background: rgba(0,0,0,0.6); font-size: 0.75rem; color: white; border: 1px solid rgba(255,255,255,0.1); }
.preview-controls { background: rgba(0,0,0,0.8); padding: 0.75rem 1rem; display: flex; align-items: center; gap: 0.75rem; }
.preview-controls button { color: var(--text-muted); font-size: 0.85rem; width: 28px; height: 28px; border-radius: 6px; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.preview-controls button:hover { background: rgba(255,255,255,0.1); color: var(--text); }
.preview-play-btn { background: var(--grad) !important; color: white !important; }
.time-display { flex: 1; text-align: right; font-size: 0.75rem; color: var(--text-muted); font-family: monospace; }
.editor-properties-panel { width: 240px; background: var(--bg-sidebar); border-left: 1px solid var(--border); display: flex; flex-direction: column; flex-shrink: 0; overflow-y: auto; }
.panel-tabs { display: flex; border-bottom: 1px solid var(--border); }
.panel-tab { flex: 1; padding: 0.75rem; font-size: 0.8rem; font-weight: 500; color: var(--text-muted); text-align: center; border-bottom: 2px solid transparent; transition: all 0.2s; }
.panel-tab.active { color: var(--purple-light); border-bottom-color: var(--purple); }
.panel-tab:hover { color: var(--text); }
.tab-content { display: none; padding: 1rem; }
.tab-content.active { display: block; }
.prop-group { margin-bottom: 1.25rem; }
.prop-group label { display: block; font-size: 0.75rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.5rem; }
.prop-select { width: 100%; padding: 0.5rem 0.75rem; border-radius: 8px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); color: var(--text); font-size: 0.825rem; outline: none; cursor: pointer; }
.prop-select:focus { border-color: rgba(124,58,237,0.5); }
.prop-row { display: flex; align-items: center; gap: 0.75rem; }
.prop-slider { flex: 1; -webkit-appearance: none; height: 4px; border-radius: 2px; background: rgba(255,255,255,0.1); outline: none; cursor: pointer; }
.prop-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 14px; height: 14px; border-radius: 50%; background: var(--purple); cursor: pointer; }
.prop-value { font-size: 0.75rem; color: var(--text-muted); min-width: 32px; text-align: right; }
.motion-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem; }
.motion-btn { padding: 0.5rem; border-radius: 8px; border: 1px solid var(--border); background: rgba(255,255,255,0.03); color: var(--text-muted); font-size: 0.775rem; text-align: center; transition: all 0.2s; }
.motion-btn.active { background: rgba(124,58,237,0.2); border-color: rgba(124,58,237,0.4); color: var(--purple-light); }
.motion-btn:hover:not(.active) { background: rgba(255,255,255,0.06); }
.prop-textarea { width: 100%; padding: 0.625rem 0.75rem; border-radius: 8px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); color: var(--text); font-size: 0.8rem; resize: none; height: 80px; outline: none; line-height: 1.5; }
.prop-textarea:focus { border-color: rgba(124,58,237,0.5); }
.btn-regenerate-scene { width: 100%; padding: 0.625rem; border-radius: 10px; background: rgba(124,58,237,0.15); border: 1px solid rgba(124,58,237,0.3); color: var(--purple-light); font-size: 0.825rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem; transition: all 0.2s; }
.btn-regenerate-scene:hover { background: rgba(124,58,237,0.25); }
.character-list { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.char-item { display: flex; align-items: center; gap: 0.625rem; padding: 0.5rem; border-radius: 8px; cursor: pointer; border: 1px solid transparent; transition: all 0.2s; font-size: 0.825rem; color: var(--text-muted); }
.char-item.active { background: rgba(124,58,237,0.15); border-color: rgba(124,58,237,0.3); color: var(--text); }
.char-item:hover:not(.active) { background: rgba(255,255,255,0.04); }
.char-mini-avatar { width: 28px; height: 28px; border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; color: white; flex-shrink: 0; }
.add-char-btn { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem; border-radius: 8px; border: 1px dashed var(--text-dim); color: var(--text-dim); font-size: 0.775rem; transition: all 0.2s; }
.add-char-btn:hover { border-color: var(--purple-light); color: var(--purple-light); }
.expr-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem; }
.expr-btn { padding: 0.45rem; border-radius: 8px; border: 1px solid var(--border); background: rgba(255,255,255,0.03); color: var(--text-muted); font-size: 0.75rem; text-align: center; transition: all 0.2s; }
.expr-btn.active { background: rgba(124,58,237,0.2); border-color: rgba(124,58,237,0.4); color: var(--text); }
.lipsync-controls { display: flex; flex-direction: column; gap: 0.5rem; }
.btn-lip-sync { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0.75rem; border-radius: 8px; border: 1px solid var(--border); background: rgba(255,255,255,0.04); color: var(--text-muted); font-size: 0.8rem; transition: all 0.2s; }
.btn-lip-sync:hover { border-color: rgba(124,58,237,0.4); color: var(--purple-light); background: rgba(124,58,237,0.1); }
.sfx-list { display: flex; flex-direction: column; gap: 0.4rem; }
.sfx-item { display: flex; align-items: center; gap: 0.5rem; padding: 0.4rem 0.6rem; border-radius: 8px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); }
.sfx-item span { flex: 1; font-size: 0.8rem; color: var(--text-muted); }
.sfx-item button { width: 24px; height: 24px; border-radius: 5px; color: var(--text-dim); font-size: 0.7rem; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.sfx-item button:hover { background: rgba(255,255,255,0.08); color: var(--text); }
.add-sfx-btn { display: flex; align-items: center; gap: 0.4rem; padding: 0.4rem 0.6rem; border-radius: 8px; border: 1px dashed var(--text-dim); color: var(--text-dim); font-size: 0.775rem; transition: all 0.2s; }
.add-sfx-btn:hover { border-color: var(--purple-light); color: var(--purple-light); }

/* Timeline */
.editor-timeline { height: 160px; background: var(--bg-card); border-top: 1px solid var(--border); flex-shrink: 0; display: flex; flex-direction: column; }
.timeline-header { height: 36px; padding: 0 1rem; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); }
.tl-controls { display: flex; align-items: center; gap: 0.75rem; }
.tl-btn { color: var(--text-muted); font-size: 0.85rem; width: 26px; height: 26px; border-radius: 6px; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.tl-btn:hover { background: rgba(255,255,255,0.08); color: var(--text); }
.tl-time, .tl-duration { font-size: 0.775rem; color: var(--text-muted); font-family: monospace; }
.tl-zoom-controls { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: var(--text-muted); }
.tl-zoom-controls button { width: 22px; height: 22px; border-radius: 5px; display: flex; align-items: center; justify-content: center; color: var(--text-dim); font-size: 0.7rem; transition: all 0.2s; }
.tl-zoom-controls button:hover { background: rgba(255,255,255,0.08); color: var(--text); }
.timeline-body { flex: 1; display: flex; overflow-x: auto; }
.tl-track-labels { width: 80px; flex-shrink: 0; border-right: 1px solid var(--border); display: flex; flex-direction: column; }
.tl-label { flex: 1; display: flex; align-items: center; padding: 0 0.75rem; font-size: 0.7rem; font-weight: 600; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.05em; border-bottom: 1px solid var(--border); }
.tl-tracks { flex: 1; position: relative; display: flex; flex-direction: column; }
.tl-track { flex: 1; border-bottom: 1px solid var(--border); position: relative; }
.tl-clip { position: absolute; height: calc(100% - 6px); top: 3px; border-radius: 6px; cursor: grab; display: flex; align-items: center; padding: 0 0.5rem; font-size: 0.7rem; font-weight: 500; color: rgba(255,255,255,0.9); overflow: hidden; transition: opacity 0.2s; user-select: none; }
.tl-clip:hover { opacity: 0.9; }
.tl-clip:active { cursor: grabbing; }
.video-clip { background: rgba(124,58,237,0.6); border: 1px solid rgba(124,58,237,0.8); }
.audio-clip { background: rgba(14,165,233,0.5); border: 1px solid rgba(14,165,233,0.7); }
.music-clip { background: rgba(16,185,129,0.4); border: 1px solid rgba(16,185,129,0.6); }
.sfx-clip { background: rgba(245,158,11,0.5); border: 1px solid rgba(245,158,11,0.7); }
.tl-playhead { position: absolute; top: 0; bottom: 0; z-index: 10; pointer-events: none; }
.playhead-line { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--pink); transform: translateX(-50%); }
.playhead-handle { position: absolute; top: -2px; left: 50%; transform: translateX(-50%); width: 12px; height: 12px; border-radius: 50%; background: var(--pink); }

/* Export Modal */
.export-modal { max-width: 400px; padding-bottom: 0; }
.export-options { display: flex; gap: 1rem; padding: 1.5rem; }
.export-format { flex: 1; padding: 1.25rem; border-radius: 12px; border: 2px solid var(--border); background: rgba(255,255,255,0.03); text-align: center; cursor: pointer; transition: all 0.2s; }
.export-format i { font-size: 1.75rem; color: var(--text-muted); display: block; margin-bottom: 0.5rem; }
.export-format span { display: block; font-weight: 600; font-size: 0.9rem; color: var(--text); margin-bottom: 0.25rem; }
.export-format small { font-size: 0.75rem; color: var(--text-muted); }
.export-format.active, .export-format:hover { border-color: var(--purple); background: rgba(124,58,237,0.1); }
.export-format.active i { color: var(--purple-light); }
.export-quality { padding: 0 1.5rem 1.5rem; }
.export-quality label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.5rem; }
.btn-export-confirm { width: 100%; padding: 0.875rem; background: var(--grad); color: white; font-size: 0.9rem; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 0.5rem; border-top: 1px solid var(--border); transition: all 0.2s; }
.btn-export-confirm:hover { opacity: 0.9; }

/* ===== AUTH ===== */
.auth-body { min-height: 100vh; display: flex; background: var(--bg-dark); }
.auth-container { display: flex; width: 100%; }
.auth-left { flex: 1; background: linear-gradient(135deg, rgba(124,58,237,0.15) 0%, rgba(236,72,153,0.08) 100%); border-right: 1px solid var(--border); padding: 3rem; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.auth-left::before { content: ''; position: absolute; top: -200px; left: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(124,58,237,0.2), transparent 60%); pointer-events: none; }
.auth-brand { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 2rem; }
.auth-hero { }
.auth-hero-visual { margin-bottom: 2rem; }
.auth-anim-demo { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.demo-scene { width: 80px; height: 80px; border-radius: 16px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; animation: float 3s ease-in-out infinite; }
.demo-scene.scene-b { animation-delay: 1s; }
.demo-scene.scene-c { animation-delay: 2s; }
.auth-hero h2 { font-size: 2.25rem; font-weight: 800; line-height: 1.2; margin-bottom: 1rem; color: white; }
.auth-hero p { color: var(--text-muted); margin-bottom: 2rem; }
.auth-features { display: flex; flex-direction: column; gap: 0.75rem; }
.auth-feat { display: flex; align-items: center; gap: 0.75rem; color: var(--text-muted); font-size: 0.9rem; }
.auth-feat i { color: var(--green); }
.auth-right { flex: 0 0 480px; display: flex; align-items: center; justify-content: center; padding: 2rem; }
.auth-form-container { width: 100%; max-width: 400px; }
.auth-title { font-size: 1.75rem; font-weight: 800; color: white; margin-bottom: 0.5rem; }
.auth-subtitle { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2rem; }
.social-auth { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
.social-btn { display: flex; align-items: center; justify-content: center; gap: 0.75rem; padding: 0.75rem 1.5rem; border-radius: 12px; border: 1px solid var(--border); background: rgba(255,255,255,0.04); color: var(--text); font-size: 0.875rem; font-weight: 500; transition: all 0.2s; }
.social-btn:hover { background: rgba(255,255,255,0.08); border-color: var(--border-bright); transform: translateY(-1px); }
.social-btn.discord { color: #5865f2; border-color: rgba(88,101,242,0.3); background: rgba(88,101,242,0.08); }
.social-btn.discord:hover { background: rgba(88,101,242,0.15); }
.auth-divider { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; color: var(--text-dim); font-size: 0.8rem; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.auth-form { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.input-wrap { position: relative; }
.input-wrap i { position: absolute; left: 0.875rem; top: 50%; transform: translateY(-50%); color: var(--text-dim); font-size: 0.875rem; }
.input-wrap input { width: 100%; padding: 0.75rem 1rem 0.75rem 2.5rem; border-radius: 12px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); color: var(--text); font-size: 0.875rem; outline: none; transition: border-color 0.2s; }
.input-wrap input:focus { border-color: rgba(124,58,237,0.5); }
.toggle-pwd { position: absolute; right: 0.875rem; top: 50%; transform: translateY(-50%); color: var(--text-dim); font-size: 0.875rem; }
.toggle-pwd:hover { color: var(--text); }
.form-extras { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; }
.remember-me { display: flex; align-items: center; gap: 0.5rem; color: var(--text-muted); cursor: pointer; }
.forgot-pwd { color: var(--purple-light); transition: color 0.2s; }
.forgot-pwd:hover { color: var(--purple); }
.btn-auth-submit { padding: 0.875rem; border-radius: 12px; background: var(--grad); color: white; font-size: 0.925rem; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 0.5rem; transition: all 0.3s; }
.btn-auth-submit:hover { transform: translateY(-1px); box-shadow: var(--shadow-glow); }
.auth-switch { text-align: center; font-size: 0.875rem; color: var(--text-muted); }
.auth-switch a { color: var(--purple-light); font-weight: 600; }
.auth-switch a:hover { color: var(--purple); }
.auth-terms { text-align: center; font-size: 0.775rem; color: var(--text-dim); margin-top: 0.75rem; }
.auth-terms a { color: var(--text-muted); }

/* ===== PRICING ===== */
.pricing-body .pricing-hero { padding: 6rem 0 3rem; text-align: center; }
.billing-toggle { display: inline-flex; align-items: center; gap: 0.75rem; padding: 0.5rem; border-radius: 100px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); margin-top: 1.5rem; }
.toggle-opt { font-size: 0.875rem; font-weight: 500; color: var(--text-muted); cursor: pointer; padding: 0.25rem 0.75rem; border-radius: 100px; transition: all 0.2s; display: flex; align-items: center; gap: 0.5rem; }
.toggle-opt.active { color: var(--text); background: rgba(255,255,255,0.08); }
.toggle-switch { width: 44px; height: 24px; border-radius: 100px; background: rgba(124,58,237,0.3); border: 1px solid rgba(124,58,237,0.5); position: relative; cursor: pointer; }
.toggle-thumb { width: 18px; height: 18px; border-radius: 50%; background: var(--purple-light); position: absolute; top: 2px; left: 2px; transition: transform 0.3s; }
.save-badge { padding: 0.15rem 0.5rem; border-radius: 100px; background: rgba(16,185,129,0.2); border: 1px solid rgba(16,185,129,0.3); color: var(--green); font-size: 0.7rem; font-weight: 600; }
.pricing-section { padding: 2rem 0 6rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 5rem; align-items: start; }
.pricing-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 24px; padding: 2rem; position: relative; transition: all 0.3s; }
.pricing-card:hover { border-color: rgba(124,58,237,0.4); transform: translateY(-4px); }
.pricing-card.featured { border-color: rgba(124,58,237,0.5); background: linear-gradient(180deg, rgba(124,58,237,0.08), var(--bg-card)); }
.popular-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); padding: 0.3rem 1.25rem; border-radius: 100px; background: var(--grad); color: white; font-size: 0.75rem; font-weight: 700; white-space: nowrap; }
.plan-header { margin-bottom: 2rem; }
.plan-icon { font-size: 2.25rem; margin-bottom: 0.75rem; }
.plan-name { font-size: 1.2rem; font-weight: 700; color: white; margin-bottom: 0.5rem; }
.plan-price { display: flex; align-items: flex-end; gap: 0.25rem; margin-bottom: 0.75rem; }
.price-val { font-size: 2.75rem; font-weight: 900; color: white; line-height: 1; }
.price-period { font-size: 0.875rem; color: var(--text-muted); padding-bottom: 0.375rem; }
.plan-desc { color: var(--text-muted); font-size: 0.875rem; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.plan-features li { display: flex; align-items: center; gap: 0.625rem; font-size: 0.875rem; color: var(--text-muted); }
.plan-features li i { width: 16px; text-align: center; flex-shrink: 0; }
.plan-features li i.fa-check { color: var(--green); }
.plan-features li i.fa-times { color: var(--red); }
.plan-features li.disabled { opacity: 0.5; text-decoration: line-through; }
.btn-plan { display: block; text-align: center; padding: 0.875rem; border-radius: 12px; font-size: 0.9rem; font-weight: 600; transition: all 0.3s; }
.btn-plan-free { border: 1px solid var(--border-bright); color: var(--text); }
.btn-plan-free:hover { background: rgba(255,255,255,0.06); border-color: var(--text); }
.btn-plan-pro { background: var(--grad); color: white; }
.btn-plan-pro:hover { transform: translateY(-1px); box-shadow: var(--shadow-glow); }
.btn-plan-studio { border: 1px solid rgba(124,58,237,0.5); color: var(--purple-light); background: rgba(124,58,237,0.1); }
.btn-plan-studio:hover { background: rgba(124,58,237,0.2); }
.faq-section { }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.faq-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 1.5rem; }
.faq-card h4 { font-size: 0.95rem; font-weight: 600; color: white; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.625rem; }
.faq-card h4 i { color: var(--purple-light); }
.faq-card p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.6; }

/* ===== NOTIFICATIONS / TOASTS ===== */
.toast-container { position: fixed; bottom: 1.5rem; right: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; z-index: 9999; }
.toast { display: flex; align-items: center; gap: 0.75rem; padding: 0.875rem 1.25rem; border-radius: 14px; background: var(--bg-card2); border: 1px solid var(--border-bright); min-width: 280px; max-width: 380px; animation: toast-in 0.3s ease; box-shadow: 0 8px 24px rgba(0,0,0,0.4); }
@keyframes toast-in { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
.toast-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.9rem; }
.toast.success .toast-icon { background: rgba(16,185,129,0.2); color: var(--green); }
.toast.error .toast-icon { background: rgba(239,68,68,0.2); color: var(--red); }
.toast.info .toast-icon { background: rgba(124,58,237,0.2); color: var(--purple-light); }
.toast-text { flex: 1; font-size: 0.875rem; color: var(--text); }
.toast-close { color: var(--text-dim); font-size: 0.85rem; transition: color 0.2s; }
.toast-close:hover { color: var(--text); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .floating-cards { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-large { grid-column: span 2; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .styles-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(1, 1fr); max-width: 400px; margin: 0 auto 5rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .mobile-menu-btn { display: flex; margin-left: auto; }
  .mobile-menu.open { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-large { grid-column: span 1; }
  .steps-grid { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .gallery-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .styles-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-container { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .sidebar { transform: translateX(-100%); }
  .sidebar.open { transform: translateX(0); }
  .app-main { margin-left: 0; }
  .quick-create-grid { grid-template-columns: repeat(4, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .auth-container { flex-direction: column; }
  .auth-left { padding: 2rem; }
  .auth-right { flex: none; padding: 2rem; }
  .faq-grid { grid-template-columns: 1fr; }
  .editor-scenes-panel, .editor-properties-panel { display: none; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .stat-divider { width: 60px; height: 1px; }
  .quick-create-grid { grid-template-columns: repeat(4, 1fr); }
  .projects-grid { grid-template-columns: 1fr; }
}
