/* ==========================================
   usie Website - Candy Theme Styles
   ========================================== */

/* CSS Variables - Candy Theme */
:root {
    /* Primary Colors */
    --primary: #FF6B9D;
    --secondary: #00D4FF;

    /* Neon Accents */
    --neon-pink: #FF1493;
    --neon-purple: #DA70D6;
    --neon-blue: #00FFFF;
    --neon-orange: #FF8C00;

    /* Semantic Colors */
    --accent-yellow: #FFE135;
    --accent-red: #FF4757;
    --accent-green: #2ED573;

    /* Backgrounds */
    --background: #1A0A2E;
    --background-light: #2D1B4E;
    --card-bg: rgba(255, 107, 157, 0.08);
    --card-bg-solid: #2D1B4E;
    --glass-bg: rgba(255, 107, 157, 0.1);

    /* Text */
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 107, 157, 0.6);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF6B9D, #00D4FF);
    --gradient-hot: linear-gradient(135deg, #FF1493, #FF6B9D, #FFB347);
    --gradient-cool: linear-gradient(135deg, #00D4FF, #DA70D6);

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 120px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 64px;
}

/* Three.js Canvas Background */
#three-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Floating Hearts Background */
.floating-hearts {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-hearts::before,
.floating-hearts::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.floating-hearts::before {
    width: 400px;
    height: 400px;
    background: var(--neon-pink);
    top: 10%;
    left: -10%;
}

.floating-hearts::after {
    width: 300px;
    height: 300px;
    background: var(--neon-blue);
    bottom: 20%;
    right: -5%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    background: rgba(26, 10, 46, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 107, 157, 0.1);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-logo-img {
    height: 40px;
    width: auto;
}

.nav-cta {
    padding: 10px 24px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition-normal);
    box-shadow: 0 4px 20px rgba(255, 107, 157, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 107, 157, 0.5);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 30px rgba(255, 107, 157, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(255, 107, 157, 0.6);
}

.btn-large {
    padding: 20px 48px;
    font-size: 1.125rem;
}

.btn-icon {
    width: 24px;
    height: 24px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 24px 60px;
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.hero-glow-pink {
    width: 500px;
    height: 500px;
    background: var(--neon-purple);
    opacity: 0.3;
    top: 10%;
    left: 10%;
    animation: pulse 8s ease-in-out infinite;
}

.hero-glow-cyan {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    opacity: 0.2;
    bottom: 20%;
    right: 10%;
    animation: pulse 8s ease-in-out infinite 4s;
}

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

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    max-width: var(--container-width);
    width: 100%;
    z-index: 1;
}

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

.hero-logo {
    width: 280px;
    height: auto;
    margin-bottom: 32px;
    filter: drop-shadow(0 10px 40px rgba(218, 112, 214, 0.5));
    animation: heroFloat 6s ease-in-out infinite;
}

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

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 24px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 60px rgba(255, 107, 157, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-phone {
    flex: 0 0 auto;
}

.phone-mockup {
    width: 280px;
    height: 500px;
    background: linear-gradient(180deg, #2D1B4E 0%, #1A0A2E 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow:
        0 0 0 2px rgba(255, 107, 157, 0.3),
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(218, 112, 214, 0.3);
    position: relative;
    animation: phoneFloat 6s ease-in-out infinite 1s;
}

@keyframes phoneFloat {
    0%, 100% {
        transform: translateY(0) rotate(2deg);
    }
    50% {
        transform: translateY(-15px) rotate(-2deg);
    }
}

/* Notch removed - screenshot already has dynamic island */

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--background);
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 32px;
}

.phone-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: var(--text-muted);
}

.phone-app-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.875rem;
    animation: fadeInUp 1s ease 1s both;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) translateY(12px);
        opacity: 0.3;
    }
}

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

/* Camera Modes Section */
.features {
    padding: var(--section-padding) 0;
    position: relative;
    z-index: 1;
}

.camera-modes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.camera-mode-card {
    background: var(--card-bg);
    border: 2px solid rgba(255, 107, 157, 0.15);
    border-radius: var(--radius-xl);
    padding: 48px 32px;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
}

.camera-mode-card.featured {
    border-color: var(--primary);
    background: rgba(255, 107, 157, 0.12);
    transform: scale(1.05);
}

.camera-mode-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.camera-mode-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.2);
}

.camera-mode-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

/* Mode Icons */
.mode-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* USIE - Two hearts together */
.usie-icon {
    position: relative;
}

.heart-svg {
    width: 55px;
    height: 55px;
    filter: drop-shadow(0 0 15px currentColor);
    animation: heartPulse 1.5s ease-in-out infinite;
}

.heart-svg.pink {
    fill: #FF6B9D;
    color: rgba(255, 107, 157, 0.6);
    transform: rotate(-15deg);
    margin-right: -20px;
    z-index: 1;
    position: relative;
}

.heart-svg.cyan {
    fill: #00D4FF;
    color: rgba(0, 212, 255, 0.6);
    transform: rotate(15deg);
    animation-delay: 0.2s;
}

@keyframes heartPulse {
    0%, 100% { transform: rotate(-15deg) scale(1); }
    50% { transform: rotate(-15deg) scale(1.15); }
}

.heart-svg.cyan {
    animation-name: heartPulse2;
}

@keyframes heartPulse2 {
    0%, 100% { transform: rotate(15deg) scale(1); }
    50% { transform: rotate(15deg) scale(1.15); }
}

/* TWOSIE - Two phones */
.twosie-icon {
    gap: 10px;
}

.phone-frame {
    width: 42px;
    height: 70px;
    border-radius: 10px;
    background: var(--background);
    border: 3px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: phoneFloat 2s ease-in-out infinite;
}

.phone-frame.pink {
    border-color: #FF6B9D;
    box-shadow: 0 0 20px rgba(255, 107, 157, 0.3);
}

.phone-frame.cyan {
    border-color: #00D4FF;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    animation-delay: 0.4s;
}

.phone-heart {
    width: 24px;
    height: 24px;
}

.phone-frame.pink .phone-heart {
    fill: #FF6B9D;
}

.phone-frame.cyan .phone-heart {
    fill: #00D4FF;
}

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

/* TIME CAPSULE */
.capsule-icon {
    position: relative;
}

.capsule-shape {
    width: 75px;
    height: 95px;
    background: linear-gradient(135deg, #8B5CF6, #A78BFA);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: capsuleFloat 3s ease-in-out infinite;
    box-shadow: 0 0 35px rgba(139, 92, 246, 0.5);
}

.lock-emoji {
    font-size: 32px;
    animation: lockBounce 2s ease-in-out infinite;
}

@keyframes capsuleFloat {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-12px) rotate(5deg); }
}

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

.camera-mode-card h3 {
    font-size: 2rem;
    margin-bottom: 8px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mode-tagline {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 16px;
}

.mode-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* More Features Section */
.more-features {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.mini-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.mini-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--card-bg);
    border: 1px solid rgba(255, 107, 157, 0.15);
    padding: 14px 24px;
    border-radius: 100px;
    font-weight: 600;
    transition: var(--transition-normal);
}

.mini-feature:hover {
    border-color: var(--primary);
    background: rgba(255, 107, 157, 0.1);
    transform: translateY(-2px);
}

.mini-icon {
    font-size: 1.3rem;
}

/* Themes Section */
.themes-section {
    padding: var(--section-padding) 0;
    position: relative;
    z-index: 1;
}

.themes-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.theme-preview {
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 16px;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.theme-preview:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.theme-preview span {
    background: rgba(0, 0, 0, 0.5);
    padding: 6px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.themes-more {
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
}

/* Download Section */
.download {
    padding: var(--section-padding) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.download-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--neon-purple) 0%, transparent 70%);
    opacity: 0.2;
    pointer-events: none;
}

.download-logo {
    width: 200px;
    height: auto;
    margin-bottom: 32px;
    filter: drop-shadow(0 10px 40px rgba(218, 112, 214, 0.5));
}

.download-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 16px;
}

.download-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.download-note {
    margin-top: 24px;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Legal Pages (Privacy, Terms) */
.legal-page {
    padding: 140px 0 80px;
    min-height: 100vh;
}

.legal-page h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 8px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-page .last-updated {
    color: var(--text-muted);
    margin-bottom: 48px;
}

.legal-content {
    max-width: 800px;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary);
}

.legal-content h3 {
    font-size: 1.15rem;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-content ul {
    color: var(--text-secondary);
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-content a {
    color: var(--primary);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Support Page */
.support-intro {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.support-content {
    max-width: 800px;
}

.faq-section h2 {
    font-size: 1.5rem;
    margin-bottom: 32px;
    color: var(--primary);
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid rgba(255, 107, 157, 0.1);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 16px;
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.faq-item a {
    color: var(--primary);
}

.contact-section {
    margin-top: 64px;
    text-align: center;
    padding: 48px;
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 107, 157, 0.1);
}

.contact-section h2 {
    margin-bottom: 12px;
}

.contact-section p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.contact-section .email-note {
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Contact Page */
.contact-intro {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.contact-content {
    max-width: 600px;
}

.contact-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 107, 157, 0.15);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
    margin-bottom: 40px;
}

.contact-emoji {
    font-size: 4rem;
    margin-bottom: 16px;
}

.contact-card h2 {
    margin-bottom: 12px;
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.contact-email {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    padding: 16px 32px;
    background: rgba(255, 107, 157, 0.1);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.contact-email:hover {
    background: rgba(255, 107, 157, 0.2);
    transform: translateY(-2px);
}

.contact-info {
    background: var(--card-bg);
    border: 1px solid rgba(255, 107, 157, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.contact-info h3 {
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.contact-info li {
    color: var(--text-secondary);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.contact-info li::before {
    content: '•';
    color: var(--primary);
    position: absolute;
    left: 8px;
}

.response-time {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 107, 157, 0.1);
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    width: 120px;
    height: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 107, 157, 0.1);
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .camera-modes {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .camera-mode-card.featured {
        transform: scale(1.02);
    }

    .camera-mode-card.featured:hover {
        transform: scale(1.02) translateY(-8px);
    }

    .themes-showcase {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .hero {
        padding-top: 100px;
    }

    .hero-logo {
        width: 220px;
    }

    .phone-mockup {
        width: 240px;
        height: 430px;
    }

    .camera-modes {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .camera-mode-card.featured {
        transform: none;
    }

    .camera-mode-card.featured:hover {
        transform: translateY(-8px);
    }

    .mini-features {
        gap: 12px;
    }

    .mini-feature {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .themes-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        width: 180px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 16px 32px;
    }

    .themes-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* Animations on Scroll */
.camera-mode-card,
.mini-feature,
.theme-preview {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.camera-mode-card:nth-child(1) { animation-delay: 0.1s; }
.camera-mode-card:nth-child(2) { animation-delay: 0.2s; }
.camera-mode-card:nth-child(3) { animation-delay: 0.3s; }

.mini-feature:nth-child(1) { animation-delay: 0.1s; }
.mini-feature:nth-child(2) { animation-delay: 0.15s; }
.mini-feature:nth-child(3) { animation-delay: 0.2s; }
.mini-feature:nth-child(4) { animation-delay: 0.25s; }
.mini-feature:nth-child(5) { animation-delay: 0.3s; }
.mini-feature:nth-child(6) { animation-delay: 0.35s; }

.theme-preview:nth-child(1) { animation-delay: 0.1s; }
.theme-preview:nth-child(2) { animation-delay: 0.15s; }
.theme-preview:nth-child(3) { animation-delay: 0.2s; }
.theme-preview:nth-child(4) { animation-delay: 0.25s; }
.theme-preview:nth-child(5) { animation-delay: 0.3s; }
.theme-preview:nth-child(6) { animation-delay: 0.35s; }
.theme-preview:nth-child(7) { animation-delay: 0.4s; }
.theme-preview:nth-child(8) { animation-delay: 0.45s; }
