/* Help Page Styles (copied to Public/styles) */

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

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #f8fafc;
    color: #1e293b;
    line-height: 1.6;
    min-height: 100vh;
}

/* Mobile Top Bar */
.mobile-top-bar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: white;
    border-bottom: 1px solid #e2e8f0;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 1000;
}

.back-btn-top {
    width: 40px;
    height: 40px;
    border: none;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.back-btn-top:hover {
    background: #e2e8f0;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 1.1rem;
}

.main-content {
    margin-left: 0;
    padding-top: 20px;
    padding-bottom: 100px;
    transition: padding-top 0.3s ease;
}

body.public-page .main-content {
    padding-bottom: 100px !important;
}

.sidebar-nav.minimized ~ .main-content {
    margin-left: 80px;
}

:root {
    --accent-purple: #8b5cf6;
    --accent-blue: #3b82f6;
    --accent-pink: #ec4899;
    --accent-green: #10b981;
    --accent-orange: #f59e0b;
}

.feature-showcase {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero-section {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: white;
    border-radius: 24px;
    margin-bottom: 60px;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.hero-section p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.section-divider { text-align: center; margin: 80px 0 40px; }

.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-bottom: 60px; }

.feature-box { background: white; border-radius: 20px; padding: 32px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.3s cubic-bezier(0.4,0,0.2,1); border: 2px solid transparent; }

.feature-box:hover { transform: translateY(-8px); box-shadow: 0 12px 40px rgba(139,92,246,0.2); border-color: rgba(139,92,246,0.3); }

.feature-icon { width:64px; height:64px; border-radius:16px; display:flex; align-items:center; justify-content:center; font-size:2rem; margin-bottom:20px; transition: transform 0.3s ease; }

.feature-box:hover .feature-icon { transform: scale(1.1) rotate(5deg); }

.feature-box h3 { font-size:1.3rem; font-weight:700; margin-bottom:12px; color:#1e293b; }

.feature-box p { font-size:1rem; color:#64748b; line-height:1.6; margin-bottom:20px; }

.feature-list { list-style:none; padding:0; margin:0; }
.feature-list li { padding:8px 0; padding-left:28px; position:relative; font-size:0.95rem; color:#475569; }
.feature-list li::before { content: '✓'; position:absolute; left:0; font-weight:bold; color:var(--accent-green); }

/* end of copied help styles */
