* { margin: 0; padding: 0; box-sizing: border-box; } :root { --bg-primary: #06080d; --bg-secondary: #0c1018; --bg-card: #111623; --accent: #4f7cff; --accent-glow: rgba(79, 124, 255, 0.15); --accent-secondary: #22d3ee; --text-primary: #f0f2f5; --text-secondary: #8892a4; --text-muted: #555e70; --border: rgba(255,255,255,0.06); --success: #22c55e; --error: #ef4444; --warning: #eab308; --sidebar-width: 240px; } html { scroll-behavior: smooth; } body { font-family: 'DM Sans', -apple-system, sans-serif; background: var(--bg-primary); color: var(--text-primary); line-height: 1.6; overflow-x: hidden; min-height: 100vh; } h1, h2, h3, h4, h5, h6 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; line-height: 1.3; } a { color: var(--accent); text-decoration: none; } a:hover { text-decoration: underline; } /* ===== AUTH LAYOUT ===== */ .auth-wrapper { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 2rem; background: var(--bg-primary); position: relative; } .auth-wrapper::before { content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%); pointer-events: none; } .auth-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 2.5rem; width: 100%; max-width: 420px; position: relative; z-index: 1; } .auth-logo { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.6rem; text-align: center; margin-bottom: 0.5rem; letter-spacing: -0.5px; } .auth-logo .logo-accent { color: var(--accent); } .auth-subtitle { text-align: center; color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 2rem; } .auth-toggle { display: flex; background: var(--bg-secondary); border-radius: 10px; padding: 4px; margin-bottom: 1.5rem; } .auth-toggle button { flex: 1; padding: 0.6rem; border: none; background: transparent; color: var(--text-muted); font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 500; border-radius: 8px; cursor: pointer; transition: all 0.2s; } .auth-toggle button.active { background: var(--accent); color: #fff; } /* ===== FORM ELEMENTS ===== */ .form-group { margin-bottom: 1.25rem; } .form-group label { display: block; font-size: 0.8rem; font-weight: 500; color: var(--text-secondary); margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.5px; } .form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.75rem 1rem; background: var(--bg-secondary); border: 1px solid var(--border); border-radius: 10px; color: var(--text-primary); font-family: 'DM Sans', sans-serif; font-size: 0.9rem; outline: none; transition: border-color 0.2s; } .form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--accent); } .form-group textarea { resize: vertical; min-height: 100px; } .form-group select { cursor: pointer; -webkit-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238892a4' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 2.5rem; } .form-group input[type="file"] { padding: 0.5rem; cursor: pointer; } .form-group input[type="file"]::file-selector-button { background: var(--accent); color: #fff; border: none; padding: 0.4rem 1rem; border-radius: 6px; font-family: 'DM Sans', sans-serif; font-size: 0.8rem; cursor: pointer; margin-right: 0.75rem; } /* ===== BUTTONS ===== */ .btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.75rem 1.5rem; border: none; border-radius: 10px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 500; cursor: pointer; transition: all 0.2s; text-decoration: none; } .btn:hover { text-decoration: none; } .btn-primary { background: var(--accent); color: #fff; } .btn-primary:hover { background: #3d6ae8; box-shadow: 0 0 20px var(--accent-glow); } .btn-primary:disabled { opacity: 0.5; cursor: not-allowed; } .btn-secondary { background: var(--bg-secondary); color: var(--text-secondary); border: 1px solid var(--border); } .btn-secondary:hover { color: var(--text-primary); border-color: rgba(255,255,255,0.12); } .btn-danger { background: rgba(239, 68, 68, 0.1); color: var(--error); border: 1px solid rgba(239, 68, 68, 0.2); } .btn-danger:hover { background: rgba(239, 68, 68, 0.2); } .btn-sm { padding: 0.5rem 1rem; font-size: 0.8rem; } .btn-block { width: 100%; } /* ===== APP LAYOUT ===== */ .app-layout { display: flex; min-height: 100vh; } .sidebar { width: var(--sidebar-width); background: var(--bg-secondary); border-right: 1px solid var(--border); padding: 1.5rem 0; position: fixed; top: 0; left: 0; height: 100vh; display: flex; flex-direction: column; z-index: 50; transition: transform 0.3s; } .sidebar-logo { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.3rem; padding: 0 1.5rem 1.5rem; letter-spacing: -0.5px; border-bottom: 1px solid var(--border); margin-bottom: 1rem; } .sidebar-logo .logo-accent { color: var(--accent); } .sidebar-nav { flex: 1; display: flex; flex-direction: column; } .sidebar-link { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1.5rem; color: var(--text-secondary); font-size: 0.9rem; font-weight: 500; cursor: pointer; transition: all 0.15s; border-left: 3px solid transparent; text-decoration: none; } .sidebar-link:hover { color: var(--text-primary); background: rgba(255,255,255,0.03); text-decoration: none; } .sidebar-link.active { color: var(--accent); background: var(--accent-glow); border-left-color: var(--accent); } .sidebar-link svg { width: 18px; height: 18px; flex-shrink: 0; } .sidebar-spacer { flex: 1; } .sidebar-logout { border-top: 1px solid var(--border); padding-top: 1rem; margin-top: 0.5rem; } .sidebar-logout .sidebar-link { color: var(--text-muted); } .sidebar-logout .sidebar-link:hover { color: var(--error); } /* ===== PLAN BADGE ===== */ .plan-badge { display: inline-flex; align-items: center; gap: 0.3rem; padding: 0.25rem 0.6rem; border-radius: 20px; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.3px; margin: 0.5rem 0.75rem 0.25rem; cursor: pointer; transition: opacity 0.2s; } .plan-badge:hover { opacity: 0.85; } .plan-badge.plan-free { background: rgba(234,179,8,0.15); color: #eab308; border: 1px solid rgba(234,179,8,0.3); } .plan-badge.plan-starter { background: rgba(34,211,238,0.12); color: #22d3ee; border: 1px solid rgba(34,211,238,0.25); } .plan-badge.plan-pro { background: rgba(79,124,255,0.15); color: #4f7cff; border: 1px solid rgba(79,124,255,0.3); } .plan-badge.plan-creator { background: rgba(234,179,8,0.12); color: #eab308; border: 1px solid rgba(234,179,8,0.25); } .plan-badge.plan-agency { background: rgba(34,197,94,0.12); color: #22c55e; border: 1px solid rgba(34,197,94,0.25); } /* ===== USAGE METERS ===== */ .usage-section { padding: 0.75rem; border-top: 1px solid var(--border); margin-top: 0.25rem; } .usage-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.6rem; } .usage-header-label { font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); } .usage-upgrade-btn { font-size: 0.67rem; color: var(--accent); cursor: pointer; text-decoration: none; font-weight: 600; } .usage-upgrade-btn:hover { text-decoration: underline; } .usage-item { margin-bottom: 0.45rem; } .usage-item-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.2rem; } .usage-item-label { font-size: 0.7rem; color: var(--text-secondary); } .usage-item-count { font-size: 0.68rem; color: var(--text-muted); } .usage-bar { height: 3px; background: rgba(255,255,255,0.07); border-radius: 2px; overflow: hidden; } .usage-bar-fill { height: 100%; border-radius: 2px; transition: width 0.4s ease; } .usage-bar-fill.green { background: var(--success); } .usage-bar-fill.yellow { background: var(--warning); } .usage-bar-fill.red { background: var(--error); } /* ===== TRIAL BANNER ===== */ .trial-banner { background: linear-gradient(135deg, rgba(234,179,8,0.12), rgba(234,179,8,0.05)); border: 1px solid rgba(234,179,8,0.25); border-radius: 10px; padding: 0.75rem 1rem; margin-bottom: 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; } .trial-banner-text { font-size: 0.85rem; color: #eab308; font-weight: 500; } .trial-banner-text span { font-weight: 700; } .trial-banner-cta { background: #eab308; color: #000; border: none; padding: 0.4rem 0.85rem; border-radius: 6px; font-size: 0.78rem; font-weight: 700; cursor: pointer; white-space: nowrap; flex-shrink: 0; } .trial-banner-cta:hover { background: #fcd34d; } .trial-expired-banner { background: linear-gradient(135deg, rgba(239,68,68,0.12), rgba(239,68,68,0.05)); border: 1px solid rgba(239,68,68,0.3); border-radius: 10px; padding: 1rem 1.25rem; margin-bottom: 1.5rem; text-align: center; } .trial-expired-banner h4 { color: var(--error); font-size: 0.95rem; margin-bottom: 0.35rem; } .trial-expired-banner p { font-size: 0.82rem; color: var(--text-secondary); margin-bottom: 0.75rem; } .trial-expired-banner a { color: #fff; background: var(--error); padding: 0.4rem 1rem; border-radius: 6px; font-size: 0.82rem; font-weight: 600; text-decoration: none; } .trial-expired-banner a:hover { background: #dc2626; } /* ===== UPGRADE MODAL ===== */ #upgrade-modal .modal { max-width: 420px; } .upgrade-modal-icon { width: 48px; height: 48px; background: rgba(234,179,8,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.5rem; } .upgrade-modal-title { text-align: center; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; } .upgrade-modal-msg { text-align: center; font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 1.5rem; } .upgrade-modal-actions { display: flex; gap: 0.75rem; } .upgrade-modal-actions .btn { flex: 1; text-align: center; } .main-content { flex: 1; margin-left: var(--sidebar-width); padding: 2rem; min-height: 100vh; } .mobile-header { display: none; position: fixed; top: 0; left: 0; right: 0; height: 56px; background: var(--bg-secondary); border-bottom: 1px solid var(--border); z-index: 40; align-items: center; padding: 0 1rem; justify-content: space-between; } .mobile-header .logo { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.2rem; } .mobile-header .logo-accent { color: var(--accent); } .hamburger { background: none; border: none; color: var(--text-primary); cursor: pointer; padding: 0.5rem; } .hamburger svg { width: 24px; height: 24px; } .sidebar-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 45; } /* ===== PAGE HEADER ===== */ .page-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; } .page-header h1 { font-size: 1.5rem; } .page-header p { color: var(--text-secondary); font-size: 0.9rem; margin-top: 0.25rem; } /* ===== STATS CARDS ===== */ .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-bottom: 2rem; } .stat-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 1.25rem; } .stat-card .stat-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.5rem; } .stat-card .stat-value { font-family: 'Space Grotesk', sans-serif; font-size: 1.75rem; font-weight: 700; color: var(--text-primary); } .stat-card .stat-sub { font-size: 0.8rem; color: var(--text-secondary); margin-top: 0.25rem; } /* ===== TABLE ===== */ .table-wrapper { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; } .table-header { padding: 1rem 1.25rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; } .table-header h3 { font-size: 1rem; } table { width: 100%; border-collapse: collapse; } th { text-align: left; padding: 0.75rem 1.25rem; font-size: 0.75rem; font-weight: 500; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 1px solid var(--border); } td { padding: 0.85rem 1.25rem; font-size: 0.9rem; border-bottom: 1px solid var(--border); color: var(--text-secondary); } tr:last-child td { border-bottom: none; } tr:hover td { background: rgba(255,255,255,0.02); } td a { color: var(--text-primary); font-weight: 500; } /* ===== STATUS BADGES ===== */ .badge { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.25rem 0.65rem; border-radius: 100px; font-size: 0.75rem; font-weight: 500; } .badge-draft { background: rgba(85, 94, 112, 0.2); color: var(--text-muted); } .badge-sending { background: rgba(234, 179, 8, 0.15); color: var(--warning); animation: pulse-badge 2s infinite; } .badge-sent { background: rgba(34, 197, 94, 0.15); color: var(--success); } .badge-failed { background: rgba(239, 68, 68, 0.15); color: var(--error); } .badge-pending_review { background: rgba(139, 92, 246, 0.15); color: #a78bfa; animation: pulse-badge 2s infinite; } .badge-approved { background: rgba(34, 197, 94, 0.15); color: var(--success); } .badge-rejected { background: rgba(239, 68, 68, 0.15); color: var(--error); } .badge-changes_requested { background: rgba(234, 179, 8, 0.15); color: var(--warning); } .badge-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; } @keyframes pulse-badge { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } } /* ===== WIZARD STEPS ===== */ .wizard-steps { display: flex; align-items: center; gap: 0; margin-bottom: 2rem; } .wizard-step { display: flex; align-items: center; gap: 0.5rem; } .wizard-step-number { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk', sans-serif; font-size: 0.8rem; font-weight: 600; background: var(--bg-secondary); border: 2px solid var(--border); color: var(--text-muted); transition: all 0.3s; } .wizard-step.active .wizard-step-number { background: var(--accent); border-color: var(--accent); color: #fff; } .wizard-step.completed .wizard-step-number { background: var(--success); border-color: var(--success); color: #fff; } .wizard-step-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; } .wizard-step.active .wizard-step-label { color: var(--text-primary); } .wizard-step.completed .wizard-step-label { color: var(--success); } .wizard-connector { flex: 1; height: 2px; background: var(--border); margin: 0 0.75rem; min-width: 20px; } .wizard-connector.completed { background: var(--success); } .wizard-panel { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 2rem; } /* ===== AI GENERATE ===== */ .ai-generate-section { text-align: center; padding: 2rem 0; } .ai-generate-section p { color: var(--text-secondary); margin-bottom: 1.5rem; font-size: 0.9rem; } .ai-options { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; } .ai-loading { display: flex; flex-direction: column; align-items: center; gap: 1rem; padding: 2rem 0; } .ai-spinner { width: 48px; height: 48px; border: 3px solid var(--border); border-top-color: var(--accent); border-radius: 50%; animation: spin 0.8s linear infinite; } @keyframes spin { to { transform: rotate(360deg); } } .ai-loading p { color: var(--text-secondary); font-size: 0.9rem; } .generated-preview { text-align: left; margin-top: 1.5rem; } .generated-preview h4 { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 0.5rem; } .generated-subject { background: var(--bg-secondary); border: 1px solid var(--border); border-radius: 8px; padding: 0.75rem 1rem; color: var(--text-primary); font-weight: 500; margin-bottom: 1rem; } .generated-body { background: var(--bg-secondary); border: 1px solid var(--border); border-radius: 8px; padding: 1rem; color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; max-height: 300px; overflow-y: auto; } /* ===== EMAIL PREVIEW ===== */ .email-preview-container { background: var(--bg-secondary); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; margin: 1.5rem 0; } .email-preview-bar { display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1rem; background: var(--bg-card); border-bottom: 1px solid var(--border); } .email-preview-dot { width: 10px; height: 10px; border-radius: 50%; } .email-preview-dot:nth-child(1) { background: #ef4444; } .email-preview-dot:nth-child(2) { background: #eab308; } .email-preview-dot:nth-child(3) { background: #22c55e; } .email-preview-content { background: #ffffff; margin: 1rem; border-radius: 8px; padding: 2rem; color: #1a1a1a; } .email-preview-content .email-subject { font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem; font-weight: 600; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid #e5e7eb; color: #111; } .email-preview-content .email-body { font-size: 0.95rem; line-height: 1.8; color: #374151; } .email-preview-content .email-body p { margin-bottom: 0.75rem; } /* ===== CONTACT LISTS ===== */ .contact-lists-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; margin-bottom: 2rem; } .contact-list-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 1.25rem; cursor: pointer; transition: all 0.15s; } .contact-list-card:hover { border-color: rgba(255,255,255,0.12); } .contact-list-card h4 { font-size: 1rem; margin-bottom: 0.25rem; } .contact-list-card p { font-size: 0.85rem; color: var(--text-secondary); } .contact-list-card .card-actions { display: flex; gap: 0.5rem; margin-top: 1rem; } /* ===== CAMPAIGN DETAIL ===== */ .detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; } .detail-section { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; } .detail-section h3 { font-size: 1rem; margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); } .detail-row { display: flex; justify-content: space-between; padding: 0.5rem 0; font-size: 0.9rem; } .detail-row .label { color: var(--text-muted); } .detail-row .value { color: var(--text-primary); font-weight: 500; } /* ===== EMPTY STATE ===== */ .empty-state { text-align: center; padding: 3rem 2rem; color: var(--text-muted); } .empty-state svg { width: 48px; height: 48px; margin-bottom: 1rem; opacity: 0.5; } .empty-state h3 { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 0.5rem; } .empty-state p { font-size: 0.9rem; margin-bottom: 1.5rem; } /* ===== TOAST ===== */ .toast-container { position: fixed; top: 1rem; right: 1rem; z-index: 1000; display: flex; flex-direction: column; gap: 0.5rem; } .toast { padding: 0.85rem 1.25rem; border-radius: 10px; font-size: 0.85rem; font-weight: 500; max-width: 380px; animation: toast-in 0.3s ease; display: flex; align-items: center; gap: 0.5rem; } .toast-success { background: rgba(34, 197, 94, 0.15); color: var(--success); border: 1px solid rgba(34, 197, 94, 0.3); } .toast-error { background: rgba(239, 68, 68, 0.15); color: var(--error); border: 1px solid rgba(239, 68, 68, 0.3); } .toast-info { background: rgba(79, 124, 255, 0.12); color: var(--accent); border: 1px solid rgba(79, 124, 255, 0.25); } .toast-warning { background: rgba(234, 179, 8, 0.12); color: var(--warning); border: 1px solid rgba(234, 179, 8, 0.25); } @keyframes toast-in { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } } .toast-exit { animation: toast-out 0.3s ease forwards; } @keyframes toast-out { from { opacity: 1; transform: translateX(0); } to { opacity: 0; transform: translateX(20px); } } /* ===== LOADING ===== */ .spinner { width: 20px; height: 20px; border: 2px solid rgba(255,255,255,0.2); border-top-color: #fff; border-radius: 50%; animation: spin 0.6s linear infinite; display: inline-block; } .page-loader { display: flex; align-items: center; justify-content: center; padding: 4rem; } .page-loader .spinner { width: 32px; height: 32px; border-color: var(--border); border-top-color: var(--accent); } /* ===== MODAL ===== */ .modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); display: flex; align-items: center; justify-content: center; z-index: 200; padding: 2rem; } .modal { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 2rem; width: 100%; max-width: 480px; max-height: 80vh; overflow-y: auto; } .modal h3 { font-size: 1.15rem; margin-bottom: 1.5rem; } .modal-actions { display: flex; gap: 0.75rem; justify-content: flex-end; margin-top: 1.5rem; } /* ===== CSV HINT ===== */ .csv-hint { background: var(--bg-secondary); border: 1px solid var(--border); border-radius: 8px; padding: 0.75rem 1rem; font-size: 0.8rem; color: var(--text-muted); margin-top: 0.5rem; font-family: 'DM Sans', monospace; } .csv-hint code { color: var(--accent-secondary); } /* ===== CONTACTS TABLE ===== */ .back-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--text-secondary); font-size: 0.85rem; margin-bottom: 1rem; cursor: pointer; transition: color 0.15s; } .back-link:hover { color: var(--text-primary); text-decoration: none; } /* ===== MARKETPLACE ===== */ .mkt-detail-grid { grid-template-columns: 1fr 300px; } /* ===== RESPONSIVE ===== */ @media (max-width: 768px) { .mkt-detail-grid { grid-template-columns: 1fr !important; } .sidebar { transform: translateX(-100%); } .sidebar.open { transform: translateX(0); } .sidebar-overlay.open { display: block; } .mobile-header { display: flex; } .main-content { margin-left: 0; padding: 1.25rem; padding-top: calc(56px + 1.25rem); } .stats-grid { grid-template-columns: 1fr 1fr; } .detail-grid { grid-template-columns: 1fr; } .page-header { flex-direction: column; align-items: flex-start; } .wizard-step-label { display: none; } table { font-size: 0.8rem; } th, td { padding: 0.65rem 0.75rem; } .contact-lists-grid { grid-template-columns: 1fr; } } @media (max-width: 480px) { .stats-grid { grid-template-columns: 1fr; } .auth-card { padding: 1.75rem; } .wizard-panel { padding: 1.25rem; } } /* ===== AUTH ENHANCEMENTS ===== */ .auth-social-proof { display: flex; align-items: center; gap: 0.6rem; justify-content: center; margin-bottom: 1.25rem; } .auth-proof-avatars { display: flex; } .auth-proof-avatar { width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--bg-card); margin-left: -6px; font-size: 0.6rem; display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; } .auth-proof-avatar:first-child { margin-left: 0; } .auth-proof-text { font-size: 0.78rem; color: var(--text-muted); } .auth-proof-text strong { color: var(--text-secondary); } .auth-trust { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-top: 1rem; flex-wrap: wrap; } .auth-trust-item { display: flex; align-items: center; gap: 0.3rem; font-size: 0.72rem; color: var(--text-muted); } .auth-trust-item::before { content: '✓'; color: #4ade80; font-weight: 700; } .pw-strength-bar { height: 3px; border-radius: 2px; background: var(--border); margin-top: 0.4rem; overflow: hidden; } .pw-strength-fill { height: 100%; border-radius: 2px; width: 0; transition: width 0.3s, background 0.3s; } .pw-strength-label { font-size: 0.7rem; color: var(--text-muted); margin-top: 0.25rem; text-align: right; } /* ===== ANALYTICS ===== */ .analytics-range-toggle { display: flex; background: var(--bg-secondary); border: 1px solid var(--border); border-radius: 10px; padding: 4px; gap: 2px; } .analytics-range-toggle button { padding: 0.4rem 1rem; border: none; background: transparent; color: var(--text-muted); font-family: 'DM Sans', sans-serif; font-size: 0.82rem; font-weight: 500; border-radius: 7px; cursor: pointer; transition: all 0.15s; white-space: nowrap; } .analytics-range-toggle button.active { background: var(--accent); color: #fff; } .analytics-range-toggle button:hover:not(.active) { color: var(--text-primary); background: rgba(255,255,255,0.04); } .analytics-overview-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 2rem; } @media (max-width: 900px) { .analytics-overview-grid { grid-template-columns: 1fr 1fr; } } @media (max-width: 480px) { .analytics-overview-grid { grid-template-columns: 1fr; } } .analytics-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 1.25rem 1.5rem; display: flex; flex-direction: column; gap: 0.4rem; } .analytics-card-label { font-size: 0.78rem; font-weight: 500; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; } .analytics-card-value { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 700; color: var(--text-primary); line-height: 1.1; } .analytics-card-icon { font-size: 1.4rem; margin-bottom: 0.25rem; } .analytics-chart-wrapper { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; margin-bottom: 2rem; } .analytics-chart-title { font-size: 0.95rem; font-weight: 600; color: var(--text-primary); margin-bottom: 1rem; } .analytics-campaign-row { display: grid; grid-template-columns: 1fr 80px 80px 80px 90px; gap: 0.5rem; align-items: center; padding: 0.85rem 1rem; border-bottom: 1px solid var(--border); font-size: 0.87rem; } .analytics-campaign-row:last-child { border-bottom: none; } .analytics-campaign-header { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; } .analytics-metric { text-align: right; font-weight: 600; color: var(--text-primary); } .analytics-metric-na { text-align: right; color: var(--text-muted); font-size: 0.8rem; } @media (max-width: 640px) { .analytics-campaign-row { grid-template-columns: 1fr 70px 70px; } .analytics-campaign-row .hide-mobile { display: none; } } /* Analytics tab bar */ .analytics-tab-bar { display: flex; gap: 0.25rem; padding: 0 1.5rem 0; margin-bottom: 1.5rem; border-bottom: 1px solid var(--border); } .analytics-tab-btn { background: none; border: none; border-bottom: 2px solid transparent; padding: 0.625rem 1rem; font-size: 0.875rem; font-weight: 500; color: var(--text-muted); cursor: pointer; margin-bottom: -1px; transition: color 0.15s, border-color 0.15s; } .analytics-tab-btn.active { color: var(--accent); border-bottom-color: var(--accent); } .analytics-tab-btn:hover:not(.active) { color: var(--text-primary); } /* E-Commerce analytics */ .ec-section { margin-bottom: 2rem; } .ec-funnel-bar { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; } .ec-funnel-label { width: 140px; font-size: 0.85rem; color: var(--text-muted); flex-shrink: 0; } .ec-funnel-track { flex: 1; background: var(--surface-2, rgba(255,255,255,0.04)); border-radius: 4px; height: 28px; overflow: hidden; } .ec-funnel-fill { height: 100%; background: linear-gradient(90deg, var(--accent), #818cf8); border-radius: 4px; transition: width 0.5s ease; display: flex; align-items: center; padding-left: 0.5rem; font-size: 0.78rem; font-weight: 600; color: #fff; white-space: nowrap; } .ec-funnel-meta { width: 90px; text-align: right; font-size: 0.8rem; color: var(--text-muted); } .ec-stat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); gap: 1rem; margin-bottom: 1.5rem; } .ec-stat { background: var(--surface-2, rgba(255,255,255,0.04)); border-radius: 8px; padding: 1rem; } .ec-stat-label { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.25rem; } .ec-stat-value { font-size: 1.4rem; font-weight: 700; color: var(--text-primary); } .ec-stat-sub { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.15rem; } .ec-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; } .ec-table th { text-align: left; padding: 0.5rem 0.75rem; color: var(--text-muted); font-weight: 500; border-bottom: 1px solid var(--border); } .ec-table td { padding: 0.5rem 0.75rem; border-bottom: 1px solid rgba(255,255,255,0.04); } .ec-table tr:last-child td { border-bottom: none; } .ec-cohort-table { font-size: 0.8rem; } .ec-cohort-table td, .ec-cohort-table th { padding: 0.35rem 0.5rem; text-align: center; } .ec-cohort-table td:first-child { text-align: left; font-weight: 500; } .ec-cohort-cell { border-radius: 4px; } .ec-heatmap { display: grid; grid-template-columns: repeat(24, 1fr); gap: 3px; } .ec-heatmap-cell { height: 32px; border-radius: 3px; background: var(--surface-2, rgba(255,255,255,0.04)); display: flex; align-items: center; justify-content: center; font-size: 0.6rem; color: var(--text-muted); } .ec-donut-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; } .ec-legend { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.85rem; } .ec-legend-item { display: flex; align-items: center; gap: 0.5rem; } .ec-legend-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; } /* ===== BREADCRUMB ===== */ .breadcrumb { display: flex; align-items: center; gap: 0.4rem; margin-bottom: 1rem; font-size: 0.82rem; color: var(--text-muted); } .breadcrumb-item { color: var(--text-muted); cursor: pointer; transition: color 0.15s; } .breadcrumb-item:hover { color: var(--text-secondary); } .breadcrumb-sep { color: var(--text-muted); opacity: 0.5; font-size: 0.75rem; } .breadcrumb-current { color: var(--text-secondary); font-weight: 500; max-width: 200px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } /* ===== CONFIRM MODAL ===== */ .confirm-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); display: flex; align-items: center; justify-content: center; z-index: 300; padding: 2rem; animation: fadeIn 0.15s ease; } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } .confirm-modal { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 1.75rem 2rem; width: 100%; max-width: 400px; animation: slideUp 0.2s ease; } @keyframes slideUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } } .confirm-modal-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; } .confirm-modal-icon.danger { background: rgba(239, 68, 68, 0.12); color: var(--error); } .confirm-modal-icon.warning { background: rgba(234, 179, 8, 0.12); color: var(--warning); } .confirm-modal h4 { font-size: 1.05rem; margin-bottom: 0.5rem; } .confirm-modal p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.5; margin-bottom: 1.5rem; } .confirm-modal-actions { display: flex; gap: 0.75rem; justify-content: flex-end; } /* ===== SCROLLBAR ===== */ ::-webkit-scrollbar { width: 6px; } ::-webkit-scrollbar-track { background: transparent; } ::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; } ::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.12); } /* ===== AUTOMATIONS ===== */ .workflow-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 1.5rem; display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; cursor: pointer; transition: border-color 0.2s, box-shadow 0.2s; margin-bottom: 1rem; } .workflow-card:hover { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent-glow); } .workflow-card-body { flex: 1; min-width: 0; } .workflow-card-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.05rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.3rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .workflow-card-meta { font-size: 0.82rem; color: var(--text-muted); display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: 0.5rem; } .workflow-card-meta span { display: flex; align-items: center; gap: 0.3rem; } .workflow-card-actions { display: flex; gap: 0.5rem; align-items: center; flex-shrink: 0; } .badge-active { background: rgba(34, 197, 94, 0.15); color: var(--success); } .badge-paused { background: rgba(234, 179, 8, 0.15); color: var(--warning); } .badge-draft2 { background: rgba(85, 94, 112, 0.2); color: var(--text-muted); } .workflow-steps-builder { margin-top: 1.5rem; } .workflow-step-node { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 0; } .step-connector-col { display: flex; flex-direction: column; align-items: center; width: 40px; flex-shrink: 0; } .step-icon { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; border: 2px solid var(--border); background: var(--bg-secondary); } .step-icon.trigger { background: rgba(79,124,255,0.15); border-color: var(--accent); } .step-icon.action { background: rgba(34,211,238,0.1); border-color: var(--accent-secondary); } .step-icon.delay { background: rgba(234,179,8,0.1); border-color: var(--warning); } .step-connector { width: 2px; flex: 1; min-height: 24px; background: var(--border); margin: 4px 0; } .step-content-card { flex: 1; background: var(--bg-secondary); border: 1px solid var(--border); border-radius: 10px; padding: 1rem 1.25rem; margin-bottom: 1rem; min-width: 0; } .step-content-card:hover { border-color: rgba(255,255,255,0.12); } .step-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.35rem; } .step-card-title { font-weight: 600; font-size: 0.9rem; color: var(--text-primary); } .step-card-desc { font-size: 0.82rem; color: var(--text-muted); } .add-step-btn { display: flex; align-items: center; justify-content: center; gap: 0.5rem; width: 100%; padding: 0.7rem; background: transparent; border: 2px dashed var(--border); border-radius: 10px; color: var(--text-muted); font-family: 'DM Sans', sans-serif; font-size: 0.85rem; cursor: pointer; transition: all 0.2s; margin-top: 0.5rem; } .add-step-btn:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-glow); } .trigger-node { background: linear-gradient(135deg, rgba(79,124,255,0.08) 0%, transparent 100%); border: 1px solid rgba(79,124,255,0.3); border-radius: 12px; padding: 1rem 1.25rem; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 1rem; } .trigger-icon { width: 42px; height: 42px; border-radius: 10px; background: rgba(79,124,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; } .trigger-label { font-size: 0.75rem; color: var(--accent); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; } .trigger-value { font-weight: 600; color: var(--text-primary); font-size: 0.95rem; } .workflow-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 1.5rem; } @media (max-width: 768px) { .workflow-stats-row { grid-template-columns: 1fr 1fr; } } .step-type-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1rem; } .step-type-option { padding: 0.85rem; background: var(--bg-secondary); border: 1px solid var(--border); border-radius: 10px; cursor: pointer; transition: all 0.15s; text-align: center; } .step-type-option:hover { border-color: var(--accent); background: var(--accent-glow); } .step-type-option.selected { border-color: var(--accent); background: var(--accent-glow); } .step-type-icon { font-size: 1.3rem; margin-bottom: 0.3rem; } .step-type-name { font-size: 0.8rem; font-weight: 600; color: var(--text-primary); } .step-type-desc { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.1rem; } .logs-table td:first-child { color: var(--text-muted); font-size: 0.78rem; } /* ===== ONBOARDING MODAL ===== */ .onboarding-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.75); z-index: 9000; display: flex; align-items: center; justify-content: center; padding: 1rem; animation: fadeIn 0.2s ease; } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } @keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } .onboarding-modal { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 2.5rem; width: 100%; max-width: 480px; animation: slideUp 0.3s ease; position: relative; } .onboarding-modal .ob-logo { font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; font-weight: 700; text-align: center; margin-bottom: 0.25rem; } .onboarding-modal .ob-logo span { color: var(--accent); } .onboarding-modal .ob-headline { text-align: center; font-family: 'Space Grotesk', sans-serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; margin-top: 1rem; } .onboarding-modal .ob-sub { text-align: center; color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 2rem; } .onboarding-steps { display: flex; justify-content: center; gap: 0.4rem; margin-bottom: 2rem; } .ob-step-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); transition: background 0.2s; } .ob-step-dot.active { background: var(--accent); } .onboarding-modal .ob-skip { position: absolute; top: 1.25rem; right: 1.25rem; background: none; border: none; color: var(--text-muted); font-size: 0.8rem; cursor: pointer; font-family: inherit; padding: 0.25rem 0.5rem; border-radius: 6px; transition: color 0.2s; } .onboarding-modal .ob-skip:hover { color: var(--text-secondary); } /* ===== ONBOARDING WIZARD ===== */ .obw-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.80); z-index: 9050; display: flex; align-items: center; justify-content: center; padding: 1rem; animation: fadeIn 0.25s ease; overflow-y: auto; } .obw-modal { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 2rem 2.25rem 2.25rem; width: 100%; max-width: 560px; animation: slideUp 0.3s ease; position: relative; } .obw-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; } .obw-logo { font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem; font-weight: 700; } .obw-logo span { color: var(--accent); } .obw-skip { background: none; border: none; color: var(--text-muted); font-size: 0.78rem; cursor: pointer; font-family: inherit; padding: 0.25rem 0.5rem; border-radius: 6px; transition: color 0.2s; white-space: nowrap; } .obw-skip:hover { color: var(--text-secondary); } /* Progress bar */ .obw-progress { display: flex; gap: 0.35rem; margin-bottom: 1.75rem; } .obw-progress-step { flex: 1; height: 4px; border-radius: 2px; background: var(--border); transition: background 0.3s; } .obw-progress-step.done { background: var(--accent); } .obw-progress-step.active { background: var(--accent); opacity: 0.5; } /* Step header */ .obw-step-label { font-size: 0.72rem; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.4rem; } .obw-step-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; font-weight: 700; margin-bottom: 0.35rem; line-height: 1.25; } .obw-step-sub { color: var(--text-secondary); font-size: 0.88rem; margin-bottom: 1.5rem; } /* Role / Goal cards */ .obw-role-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; margin-bottom: 1.5rem; } .obw-role-card { background: var(--bg-secondary); border: 2px solid var(--border); border-radius: 12px; padding: 0.9rem 0.85rem; cursor: pointer; transition: border-color 0.15s, background 0.15s; user-select: none; display: flex; flex-direction: column; gap: 0.3rem; } .obw-role-card:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); } .obw-role-card.selected { border-color: var(--accent); background: var(--accent-glow); } .obw-role-icon { font-size: 1.6rem; line-height: 1; } .obw-role-name { font-size: 0.88rem; font-weight: 600; color: var(--text-primary); } .obw-role-desc { font-size: 0.75rem; color: var(--text-muted); } /* Goal pills */ .obw-goal-list { display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.5rem; } .obw-goal-pill { background: var(--bg-secondary); border: 2px solid var(--border); border-radius: 10px; padding: 0.75rem 1rem; cursor: pointer; transition: border-color 0.15s, background 0.15s; user-select: none; display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; color: var(--text-primary); } .obw-goal-pill:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); } .obw-goal-pill.selected { border-color: var(--accent); background: var(--accent-glow); } .obw-goal-pill .obw-goal-icon { font-size: 1.25rem; flex-shrink: 0; } .obw-goal-pill .obw-goal-check { margin-left: auto; width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--border); flex-shrink: 0; transition: all 0.15s; display: flex; align-items: center; justify-content: center; } .obw-goal-pill.selected .obw-goal-check { background: var(--accent); border-color: var(--accent); color: #fff; font-size: 0.7rem; } /* Feature step */ .obw-feature-card { background: var(--bg-secondary); border: 1px solid var(--border); border-radius: 12px; padding: 1.25rem; margin-bottom: 1rem; } .obw-feature-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.4rem; } .obw-feature-card p { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 0.75rem; } .obw-feature-steps { display: flex; flex-direction: column; gap: 0.4rem; } .obw-feature-step-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.83rem; color: var(--text-secondary); } .obw-feature-step-item .obw-step-num { width: 20px; height: 20px; border-radius: 50%; background: var(--accent-glow); border: 1px solid var(--accent); color: var(--accent); font-size: 0.68rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; } /* Brand setup in step 3 */ .obw-brand-form .form-group { margin-bottom: 0.85rem; } .obw-brand-form label { font-size: 0.82rem; font-weight: 600; color: var(--text-secondary); display: block; margin-bottom: 0.35rem; } .obw-brand-form input, .obw-brand-form select { width: 100%; background: var(--bg-secondary); border: 1px solid var(--border); border-radius: 8px; padding: 0.6rem 0.85rem; font-family: inherit; font-size: 0.88rem; color: var(--text-primary); } /* Tour step */ .obw-tour-items { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; } .obw-tour-item { display: flex; align-items: center; gap: 0.85rem; background: var(--bg-secondary); border-radius: 10px; padding: 0.7rem 0.85rem; font-size: 0.87rem; } .obw-tour-item-icon { font-size: 1.2rem; flex-shrink: 0; } .obw-tour-item-text { color: var(--text-primary); } .obw-tour-item-badge { margin-left: auto; font-size: 0.7rem; font-weight: 600; color: var(--accent); background: var(--accent-glow); padding: 0.15rem 0.5rem; border-radius: 10px; } .obw-success-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--accent-glow); border: 2px solid var(--accent); display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 1.25rem; } @media (max-width: 540px) { .obw-role-grid { grid-template-columns: 1fr; } .obw-modal { padding: 1.5rem 1.25rem; } } /* Sidebar tour highlight pulse */ .obw-sidebar-highlight { animation: obwPulse 1.5s ease-in-out infinite; outline: 2px solid var(--accent); border-radius: 8px; } @keyframes obwPulse { 0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); } 50% { box-shadow: 0 0 0 6px transparent; } } /* ===== ONBOARDING VIDEO MODAL ===== */ .obv-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.88); z-index: 9100; display: flex; align-items: center; justify-content: center; padding: 1rem; animation: fadeIn 0.25s ease; } .obv-modal { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; width: 100%; max-width: 860px; overflow: hidden; animation: slideUp 0.3s ease; position: relative; display: flex; flex-direction: column; } .obv-header { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem 0.75rem; border-bottom: 1px solid var(--border); } .obv-header-left { display: flex; align-items: center; gap: 0.75rem; } .obv-logo { font-family: 'Space Grotesk', sans-serif; font-size: 1.05rem; font-weight: 700; } .obv-logo span { color: var(--accent); } .obv-title { font-size: 0.9rem; color: var(--text-secondary); } .obv-skip { background: none; border: 1px solid var(--border); color: var(--text-muted); font-size: 0.8rem; cursor: pointer; font-family: inherit; padding: 0.35rem 0.85rem; border-radius: 8px; transition: all 0.2s; white-space: nowrap; } .obv-skip:hover { color: var(--text-primary); border-color: rgba(255,255,255,0.2); } .obv-player-wrap { position: relative; background: #000; width: 100%; padding-top: 56.25%; /* 16:9 */ } .obv-player-wrap video, .obv-player-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; } .obv-no-video { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; color: var(--text-secondary); text-align: center; padding: 2rem; } .obv-no-video .obv-play-icon { width: 64px; height: 64px; background: var(--accent-glow); border: 2px solid var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; } .obv-footer { padding: 0.9rem 1.25rem 1rem; } .obv-chapters-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.55rem; } .obv-chapters { display: flex; flex-wrap: wrap; gap: 0.4rem; } .obv-chapter-btn { background: var(--bg-secondary); border: 1px solid var(--border); color: var(--text-secondary); font-size: 0.78rem; font-family: inherit; padding: 0.3rem 0.7rem; border-radius: 20px; cursor: pointer; transition: all 0.15s; display: flex; align-items: center; gap: 0.35rem; } .obv-chapter-btn:hover { border-color: var(--accent); color: var(--text-primary); } .obv-chapter-btn.active { background: var(--accent-glow); border-color: var(--accent); color: var(--accent); } .obv-chapter-btn .obv-ch-num { font-size: 0.68rem; font-weight: 700; background: var(--border); border-radius: 10px; padding: 0 5px; line-height: 1.6; } .obv-progress { display: flex; align-items: center; gap: 0.6rem; margin-top: 0.75rem; } .obv-progress-bar-wrap { flex: 1; height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; } .obv-progress-bar { height: 100%; background: var(--accent); border-radius: 2px; width: 0%; transition: width 0.5s linear; } .obv-progress-time { font-size: 0.75rem; color: var(--text-muted); white-space: nowrap; min-width: 60px; text-align: right; } .obv-cta-row { display: flex; justify-content: flex-end; margin-top: 0.85rem; } .obv-cta-btn { background: var(--accent); color: #fff; border: none; border-radius: 9px; padding: 0.55rem 1.3rem; font-family: inherit; font-size: 0.88rem; font-weight: 600; cursor: pointer; transition: opacity 0.2s; } .obv-cta-btn:hover { opacity: 0.9; } @media (max-width: 600px) { .obv-modal { border-radius: 16px; } .obv-chapter-btn { font-size: 0.72rem; padding: 0.25rem 0.55rem; } } /* ===== PRODUCT TOUR (interactive onboarding carousel) ===== */ .ob-tour { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem 2.5rem; text-align: center; animation: fadeIn 0.2s ease; } .ob-tour-icon { font-size: 3.5rem; margin-bottom: 1rem; line-height: 1; } .ob-tour-title { font-size: 1.4rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.5rem; line-height: 1.3; } .ob-tour-desc { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; max-width: 380px; margin: 0 auto; } .ob-tour-dots { display: flex; gap: 0.45rem; margin-top: 1.5rem; flex-wrap: wrap; justify-content: center; } .ob-tour-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); transition: all 0.2s; cursor: pointer; } .ob-tour-dot.active { background: var(--accent); width: 22px; border-radius: 10px; } .ob-tour-dot.done { background: var(--accent); opacity: 0.45; } .ob-tour-nav { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.25rem; } .ob-tour-back { background: transparent; border: 1px solid var(--border); color: var(--text-secondary); font-size: 0.82rem; font-family: inherit; padding: 0.4rem 1rem; border-radius: 8px; cursor: pointer; transition: all 0.15s; } .ob-tour-back:hover { border-color: var(--accent); color: var(--text-primary); } .ob-tour-next { background: var(--accent); border: none; color: #fff; font-size: 0.82rem; font-family: inherit; padding: 0.4rem 1rem; border-radius: 8px; cursor: pointer; transition: opacity 0.2s; } .ob-tour-next:hover { opacity: 0.85; } .ob-tour-start { background: var(--accent); border: none; color: #fff; font-size: 0.88rem; font-family: inherit; padding: 0.6rem 1.5rem; border-radius: 9px; cursor: pointer; transition: opacity 0.2s; font-weight: 600; } .ob-tour-start:hover { opacity: 0.85; } .ob-tour-step-counter { font-size: 0.75rem; color: var(--text-secondary); margin-top: 0.75rem; } @media (max-width: 600px) { .ob-tour { padding: 1.5rem 1.25rem; } .ob-tour-title { font-size: 1.15rem; } .ob-tour-desc { font-size: 0.82rem; } } /* ===== CHECKLIST WIDGET ===== */ .checklist-widget { background: linear-gradient(135deg, rgba(79,124,255,0.08) 0%, transparent 100%); border: 1px solid rgba(79,124,255,0.2); border-radius: 16px; padding: 1.5rem; margin-bottom: 1.5rem; } .checklist-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; gap: 1rem; flex-wrap: wrap; } .checklist-header h3 { font-size: 1rem; margin: 0; } .checklist-header .cw-dismiss { background: none; border: none; color: var(--text-muted); font-size: 0.8rem; cursor: pointer; font-family: inherit; padding: 0.25rem 0.5rem; border-radius: 6px; transition: color 0.2s; } .checklist-header .cw-dismiss:hover { color: var(--text-secondary); } .checklist-progress { background: var(--bg-secondary); border-radius: 999px; height: 6px; margin-bottom: 1.25rem; overflow: hidden; } .checklist-progress-bar { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--accent), var(--accent-secondary)); transition: width 0.4s ease; } .checklist-items { display: flex; flex-direction: column; gap: 0.6rem; } .checklist-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.65rem 0.85rem; border-radius: 10px; background: var(--bg-card); border: 1px solid var(--border); cursor: pointer; transition: border-color 0.15s; text-decoration: none; color: var(--text-primary); } .checklist-item:hover { border-color: rgba(79,124,255,0.3); text-decoration: none; } .checklist-item.done { opacity: 0.6; } .checklist-item.done .ci-text { text-decoration: line-through; color: var(--text-muted); } .ci-check { width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; transition: all 0.2s; } .checklist-item.done .ci-check { background: var(--success); border-color: var(--success); } .ci-text { font-size: 0.88rem; font-weight: 500; } .ci-arrow { margin-left: auto; color: var(--text-muted); font-size: 0.9rem; } .checklist-item.done .ci-arrow { display: none; } .cw-sample-btn { margin-top: 1rem; width: 100%; padding: 0.6rem; background: transparent; border: 1px dashed rgba(79,124,255,0.3); border-radius: 10px; color: var(--accent); font-family: inherit; font-size: 0.85rem; cursor: pointer; transition: all 0.15s; } .cw-sample-btn:hover { background: var(--accent-glow); border-style: solid; } /* ===== UPGRADE NUDGE ===== */ .upgrade-nudge { background: linear-gradient(135deg, rgba(34,211,238,0.08) 0%, rgba(79,124,255,0.08) 100%); border: 1px solid rgba(34,211,238,0.25); border-radius: 12px; padding: 1rem 1.25rem; margin-bottom: 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; } .upgrade-nudge .un-text { font-size: 0.88rem; color: var(--text-secondary); } .upgrade-nudge .un-text strong { color: var(--text-primary); } .upgrade-nudge a { padding: 0.45rem 1rem; background: var(--accent); color: #fff; border-radius: 8px; font-size: 0.82rem; font-weight: 600; text-decoration: none; white-space: nowrap; flex-shrink: 0; } .upgrade-nudge a:hover { text-decoration: none; opacity: 0.9; } /* ===== GETTING STARTED GUIDE PANEL ===== */ .gs-panel { position: fixed; top: 0; right: 0; bottom: 0; width: 400px; max-width: 100vw; background: var(--bg-card); border-left: 1px solid var(--border); z-index: 1100; transform: translateX(100%); transition: transform 0.3s cubic-bezier(0.4,0,0.2,1); overflow-y: auto; display: flex; flex-direction: column; box-shadow: -8px 0 32px rgba(0,0,0,0.5); } .gs-panel.open { transform: translateX(0); } @media (max-width: 480px) { .gs-panel { width: 100vw; } } .gs-bg-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1099; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; } .gs-bg-overlay.open { opacity: 1; pointer-events: all; } .gs-panel-header { padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; justify-content: space-between; flex-shrink: 0; gap: 1rem; } .gs-panel-header h2 { font-size: 1.05rem; margin: 0 0 0.2rem; } .gs-panel-header p { font-size: 0.8rem; color: var(--text-muted); margin: 0; } .gs-close-btn { background: none; border: none; color: var(--text-muted); cursor: pointer; padding: 0.3rem; border-radius: 6px; display: flex; align-items: center; transition: color 0.2s, background 0.2s; flex-shrink: 0; } .gs-close-btn:hover { color: var(--text-primary); background: var(--bg-secondary); } .gs-progress-bar-section { padding: 1rem 1.5rem; border-bottom: 1px solid var(--border); flex-shrink: 0; } .gs-progress-labels { display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 0.45rem; } .gs-progress-labels strong { color: var(--text-primary); font-weight: 700; } .gs-bar-bg { background: var(--bg-secondary); border-radius: 999px; height: 7px; overflow: hidden; } .gs-bar-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--accent), var(--accent-secondary)); transition: width 0.5s cubic-bezier(0.4,0,0.2,1); } .gs-steps-body { padding: 0.75rem 1.5rem; flex: 1; } .gs-step-row { display: flex; align-items: flex-start; gap: 0.9rem; padding: 0.85rem 0; border-bottom: 1px solid var(--border); } .gs-step-row:last-child { border-bottom: none; } .gs-step-circle { width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 700; margin-top: 2px; border: 2px solid var(--border); background: var(--bg-secondary); color: var(--text-muted); transition: all 0.25s; } .gs-step-row.gs-done .gs-step-circle { background: var(--success); border-color: var(--success); color: #fff; } .gs-step-info { flex: 1; min-width: 0; } .gs-step-name { font-size: 0.88rem; font-weight: 600; margin: 0 0 0.15rem; color: var(--text-primary); } .gs-step-row.gs-done .gs-step-name { color: var(--text-muted); text-decoration: line-through; } .gs-step-hint { font-size: 0.78rem; color: var(--text-muted); margin: 0 0 0.4rem; line-height: 1.4; } .gs-step-row.gs-done .gs-step-hint { display: none; } .gs-go-btn { display: inline-flex; align-items: center; gap: 0.3rem; padding: 0.28rem 0.7rem; border-radius: 6px; font-size: 0.78rem; font-weight: 600; background: var(--accent-glow); color: var(--accent); border: 1px solid rgba(79,124,255,0.25); cursor: pointer; font-family: inherit; transition: background 0.15s; } .gs-go-btn:hover { background: rgba(79,124,255,0.2); } .gs-step-row.gs-done .gs-go-btn { display: none; } .gs-congrats-card { margin: 1rem 0; padding: 1.25rem; border-radius: 12px; background: linear-gradient(135deg, rgba(34,197,94,0.1), rgba(79,124,255,0.08)); border: 1px solid rgba(34,197,94,0.25); text-align: center; } .gs-congrats-card .gs-emoji { font-size: 2.25rem; margin-bottom: 0.5rem; } .gs-congrats-card h3 { font-size: 1rem; margin: 0 0 0.4rem; } .gs-congrats-card p { font-size: 0.82rem; color: var(--text-secondary); margin: 0 0 1rem; } .gs-panel-footer { padding: 0.85rem 1.5rem; border-top: 1px solid var(--border); flex-shrink: 0; } .gs-dismiss-btn { width: 100%; background: none; border: 1px solid var(--border); color: var(--text-muted); padding: 0.5rem 1rem; border-radius: 8px; font-family: inherit; font-size: 0.82rem; cursor: pointer; transition: all 0.15s; } .gs-dismiss-btn:hover { color: var(--text-primary); border-color: rgba(255,255,255,0.15); } /* Dashboard progress banner */ .gs-dash-banner { background: linear-gradient(135deg, rgba(79,124,255,0.08) 0%, transparent 100%); border: 1px solid rgba(79,124,255,0.2); border-radius: 14px; padding: 1rem 1.25rem; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; } .gs-banner-info { flex: 1; min-width: 160px; } .gs-banner-title { font-size: 0.9rem; font-weight: 700; margin: 0 0 0.4rem; display: flex; align-items: center; gap: 0.5rem; } .gs-banner-bar { background: var(--bg-secondary); border-radius: 999px; height: 5px; overflow: hidden; margin-bottom: 0.3rem; } .gs-banner-bar-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--accent), var(--accent-secondary)); } .gs-banner-sub { font-size: 0.74rem; color: var(--text-muted); } .gs-banner-btns { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; } .gs-banner-open-btn { padding: 0.45rem 0.9rem; background: var(--accent); color: #fff; border: none; border-radius: 8px; font-family: inherit; font-size: 0.82rem; font-weight: 600; cursor: pointer; white-space: nowrap; transition: opacity 0.15s; } .gs-banner-open-btn:hover { opacity: 0.88; } .gs-banner-x { background: none; border: none; color: var(--text-muted); cursor: pointer; padding: 0.3rem; border-radius: 6px; display: flex; transition: color 0.15s; } .gs-banner-x:hover { color: var(--text-primary); } /* Sidebar badge chip */ .gs-sidebar-chip { margin-left: auto; font-size: 0.63rem; font-weight: 700; border-radius: 999px; padding: 2px 7px; color: #fff; background: var(--accent); flex-shrink: 0; } /* ===== VIDEO MODULE ===== */ .video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; margin-top: 1.5rem; } .video-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: transform 0.15s, box-shadow 0.15s; cursor: pointer; } .video-card:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.25); } .video-thumb { width: 100%; aspect-ratio: 16/9; background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; } .video-thumb img { width: 100%; height: 100%; object-fit: cover; } .video-thumb .play-btn { position: absolute; width: 48px; height: 48px; background: rgba(79,124,255,0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; transition: transform 0.15s, background 0.15s; } .video-card:hover .play-btn { transform: scale(1.1); background: var(--accent); } .video-thumb .video-status-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; color: var(--text-secondary); font-size: 0.85rem; } .video-card-body { padding: 0.9rem 1rem; } .video-card-title { font-size: 0.88rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.4rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .video-card-meta { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; flex-wrap: wrap; } .video-card-meta .meta-item { font-size: 0.75rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.3rem; } .video-status-badge { display: inline-flex; align-items: center; gap: 0.3rem; padding: 2px 8px; border-radius: 20px; font-size: 0.72rem; font-weight: 600; } .video-status-badge.generating { background: rgba(234,179,8,0.15); color: #eab308; } .video-status-badge.ready { background: rgba(34,197,94,0.15); color: #22c55e; } .video-status-badge.failed { background: rgba(239,68,68,0.15); color: #ef4444; } .video-style-tag { display: inline-block; padding: 1px 7px; border-radius: 5px; font-size: 0.7rem; font-weight: 500; background: var(--bg-secondary); color: var(--text-secondary); border: 1px solid var(--border); } /* Video player modal */ .video-player-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.85); display: flex; align-items: center; justify-content: center; z-index: 1000; padding: 1rem; } .video-player-modal { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; width: 100%; max-width: 760px; max-height: 90vh; display: flex; flex-direction: column; } .video-player-header { padding: 1rem 1.25rem; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); flex-shrink: 0; } .video-player-header h3 { font-size: 0.95rem; font-weight: 600; color: var(--text-primary); margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 500px; } .video-player-body { flex: 1; overflow-y: auto; } .video-player-body video { width: 100%; display: block; background: #000; } .video-player-footer { padding: 0.85rem 1.25rem; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; flex-shrink: 0; } /* Generation form styles */ .video-form-group { margin-bottom: 1.25rem; } .video-form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.03em; } .video-option-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; } .video-option-btn { padding: 0.45rem 0.9rem; border-radius: 8px; border: 1px solid var(--border); background: var(--bg-secondary); color: var(--text-secondary); font-family: inherit; font-size: 0.83rem; font-weight: 500; cursor: pointer; transition: all 0.15s; } .video-option-btn:hover { border-color: var(--accent); color: var(--accent); } .video-option-btn.selected { background: var(--accent-glow); border-color: var(--accent); color: var(--accent); } @media (max-width: 768px) { .video-grid { grid-template-columns: 1fr; } .video-player-modal { max-width: 100%; } } /* ===== PRODUCTS MODULE ===== */ @media (max-width: 900px) { .pd-layout { grid-template-columns: 1fr !important; } } /* Template card hover */ .video-template-card:hover { border-color: var(--accent) !important; transform: translateY(-1px); } /* ===== NOTIFICATIONS ===== */ .notif-bell-btn { position: relative; background: none; border: none; color: var(--text-secondary); cursor: pointer; padding: 0.5rem; border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: color 0.2s, background 0.2s; } .notif-bell-btn:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); } .notif-bell-btn svg { width: 22px; height: 22px; } .notif-badge { position: absolute; top: 4px; right: 4px; min-width: 16px; height: 16px; background: var(--accent); color: #fff; font-size: 0.65rem; font-weight: 700; border-radius: 999px; display: flex; align-items: center; justify-content: center; padding: 0 3px; pointer-events: none; } .notif-dropdown { position: fixed; top: auto; right: auto; width: 360px; max-width: calc(100vw - 32px); background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; box-shadow: 0 16px 48px rgba(0,0,0,0.6); z-index: 9999; overflow: hidden; display: none; } .notif-dropdown.open { display: block; } .notif-dropdown-header { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem 0.75rem; border-bottom: 1px solid var(--border); } .notif-dropdown-header h4 { font-size: 0.9rem; font-weight: 600; margin: 0; } .notif-dropdown-header a { font-size: 0.8rem; color: var(--accent); text-decoration: none; cursor: pointer; } .notif-list { max-height: 380px; overflow-y: auto; } .notif-item { display: flex; gap: 0.75rem; align-items: flex-start; padding: 0.9rem 1.25rem; border-bottom: 1px solid var(--border); transition: background 0.15s; cursor: pointer; position: relative; } .notif-item:last-child { border-bottom: none; } .notif-item:hover { background: rgba(255,255,255,0.03); } .notif-item.unread { background: rgba(79,124,255,0.05); } .notif-dot { width: 8px; height: 8px; min-width: 8px; background: var(--accent); border-radius: 50%; margin-top: 6px; } .notif-dot.read { background: transparent; } .notif-body { flex: 1; min-width: 0; } .notif-title { font-size: 0.85rem; font-weight: 600; color: var(--text-primary); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .notif-msg { font-size: 0.78rem; color: var(--text-secondary); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; } .notif-time { font-size: 0.72rem; color: var(--text-muted); margin-top: 4px; } .notif-dismiss { background: none; border: none; color: var(--text-muted); cursor: pointer; padding: 2px; border-radius: 4px; opacity: 0; transition: opacity 0.15s, color 0.15s; font-size: 1rem; line-height: 1; flex-shrink: 0; } .notif-item:hover .notif-dismiss { opacity: 1; } .notif-dismiss:hover { color: var(--error); } .notif-empty { padding: 2.5rem 1.25rem; text-align: center; color: var(--text-muted); font-size: 0.85rem; } .notif-footer { padding: 0.75rem 1.25rem; border-top: 1px solid var(--border); text-align: center; } .notif-footer a { font-size: 0.8rem; color: var(--accent); text-decoration: none; cursor: pointer; } /* Sidebar bell row */ .sidebar-notif-row { display: flex; align-items: center; justify-content: space-between; padding: 0 0.5rem 0.75rem; } /* Notification page */ .notif-page-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 1.25rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; margin-bottom: 0.75rem; cursor: pointer; transition: border-color 0.2s; position: relative; } .notif-page-item:hover { border-color: rgba(79,124,255,0.3); } .notif-page-item.unread { border-color: rgba(79,124,255,0.2); background: rgba(79,124,255,0.04); } .notif-page-icon { width: 40px; height: 40px; min-width: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; background: rgba(79,124,255,0.12); } .notif-pref-row { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; margin-bottom: 0.5rem; } .notif-pref-label { font-weight: 600; font-size: 0.9rem; } .notif-pref-toggles { display: flex; gap: 1rem; align-items: center; } .toggle-wrap { display: flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; color: var(--text-secondary); } .toggle-wrap input[type=checkbox] { width: 16px; height: 16px; accent-color: var(--accent); cursor: pointer; } /* ===== MARKETPLACE ===== */ .marketplace-tabs { display:flex; gap:0.5rem; margin-bottom:1.75rem; border-bottom:1px solid var(--border); } .marketplace-tab { padding:0.65rem 1.1rem; border:none; background:transparent; color:var(--text-secondary); font-family:'DM Sans',sans-serif; font-size:0.875rem; font-weight:500; cursor:pointer; border-bottom:2px solid transparent; margin-bottom:-1px; transition:color 0.15s,border-color 0.15s; } .marketplace-tab:hover { color:var(--text-primary); } .marketplace-tab.active { color:var(--accent); border-bottom-color:var(--accent); } .mp-filters { display:flex; gap:0.75rem; margin-bottom:1.5rem; flex-wrap:wrap; align-items:center; } .mp-filters input[type=search] { flex:1; min-width:200px; padding:0.6rem 1rem; background:var(--bg-card); border:1px solid var(--border); border-radius:8px; color:var(--text-primary); font-family:'DM Sans',sans-serif; font-size:0.875rem; outline:none; } .mp-filters input[type=search]:focus { border-color:var(--accent); } .mp-filters select { padding:0.6rem 2rem 0.6rem 0.875rem; background:var(--bg-card); border:1px solid var(--border); border-radius:8px; color:var(--text-primary); font-family:'DM Sans',sans-serif; font-size:0.875rem; outline:none; cursor:pointer; appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238892a4' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 8px center; } .mp-filters select:focus { border-color:var(--accent); } .mp-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:1.25rem; } .mp-card { background:var(--bg-card); border:1px solid var(--border); border-radius:14px; overflow:hidden; transition:border-color 0.15s,transform 0.15s; cursor:pointer; } .mp-card:hover { border-color:rgba(79,124,255,0.4); transform:translateY(-2px); } .mp-card-thumb { width:100%; aspect-ratio:16/9; background:linear-gradient(135deg,var(--bg-secondary) 0%,rgba(79,124,255,0.08) 100%); display:flex; align-items:center; justify-content:center; font-size:2.5rem; overflow:hidden; } .mp-card-thumb img { width:100%; height:100%; object-fit:cover; } .mp-card-body { padding:1rem; } .mp-card-category { font-size:0.7rem; text-transform:uppercase; letter-spacing:0.6px; color:var(--accent); font-weight:600; margin-bottom:0.35rem; } .mp-card-title { font-family:'Space Grotesk',sans-serif; font-size:0.95rem; font-weight:600; margin-bottom:0.3rem; line-height:1.3; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; } .mp-card-creator { font-size:0.78rem; color:var(--text-muted); margin-bottom:0.6rem; } .mp-card-footer { display:flex; align-items:center; justify-content:space-between; } .mp-card-price { font-family:'Space Grotesk',sans-serif; font-size:1rem; font-weight:700; } .mp-price-free { color:var(--success); } .mp-price-paid { color:var(--text-primary); } .mp-card-meta { display:flex; gap:0.75rem; font-size:0.75rem; color:var(--text-muted); } .mp-badge-owned { font-size:0.7rem; padding:0.2rem 0.5rem; background:rgba(34,197,94,0.15); color:var(--success); border-radius:6px; font-weight:600; } .mp-sell-form { background:var(--bg-card); border:1px solid var(--border); border-radius:14px; padding:1.75rem; max-width:680px; } .mp-earnings-card { background:var(--bg-card); border:1px solid var(--border); border-radius:14px; padding:1.5rem; } .mp-purchase-row { display:flex; align-items:center; gap:1rem; padding:1rem; background:var(--bg-card); border:1px solid var(--border); border-radius:12px; margin-bottom:0.75rem; } .mp-purchase-icon { width:44px; height:44px; border-radius:10px; background:var(--accent-glow); display:flex; align-items:center; justify-content:center; font-size:1.25rem; flex-shrink:0; } @media (max-width:600px) { .mp-grid { grid-template-columns:1fr; } .mp-filters { flex-direction:column; } } /* ─── CENTRAL COMMAND WIZARD ─── */ .ccw-fab { position: fixed; bottom: 24px; left: 24px; z-index: 8900; display: flex; align-items: center; gap: 8px; padding: 10px 18px; background: linear-gradient(135deg, #4f7cff 0%, #22d3ee 100%); color: #fff; border: none; border-radius: 50px; font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; cursor: pointer; box-shadow: 0 4px 20px rgba(79,124,255,0.4); transition: transform 0.15s, box-shadow 0.15s; } .ccw-fab:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(79,124,255,0.55); } .ccw-overlay { display: none; position: fixed; inset: 0; z-index: 9100; background: rgba(0,0,0,0.65); backdrop-filter: blur(6px); align-items: flex-start; justify-content: center; padding: 64px 1rem 1rem; } .ccw-overlay.open { display: flex; } .ccw-modal { background: #111623; border: 1px solid rgba(255,255,255,0.1); border-radius: 18px; width: 100%; max-width: 580px; padding: 1.75rem; box-shadow: 0 24px 64px rgba(0,0,0,0.6); animation: ccwSlideIn 0.18s ease; } @keyframes ccwSlideIn { from { opacity:0; transform:translateY(-14px); } to { opacity:1; transform:translateY(0); } } .ccw-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; } .ccw-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.05rem; font-weight: 700; display: flex; align-items: center; gap: 8px; } .ccw-close { background: transparent; border: none; color: var(--text-muted); font-size: 18px; cursor: pointer; padding: 4px 8px; border-radius: 6px; transition: background 0.15s; line-height: 1; } .ccw-close:hover { background: rgba(255,255,255,0.08); color: var(--text-primary); } .ccw-input-wrap { position: relative; margin-bottom: 1.25rem; } .ccw-input { width: 100%; padding: 0.85rem 1rem 0.85rem 2.75rem; background: #0c1018; border: 1.5px solid rgba(79,124,255,0.35); border-radius: 12px; color: var(--text-primary); font-family: 'DM Sans', sans-serif; font-size: 0.95rem; outline: none; transition: border-color 0.2s; box-sizing: border-box; } .ccw-input:focus { border-color: #4f7cff; } .ccw-input-icon { position: absolute; left: 0.9rem; top: 50%; transform: translateY(-50%); color: var(--text-secondary); pointer-events: none; } .ccw-shortcuts-label { font-size: 0.72rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 0.6rem; } .ccw-shortcuts { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 1.25rem; } .ccw-shortcut { padding: 0.4rem 0.8rem; background: #0c1018; border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; color: #c8ccd6; font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 500; cursor: pointer; transition: all 0.15s; white-space: nowrap; } .ccw-shortcut:hover { background: rgba(79,124,255,0.12); border-color: rgba(79,124,255,0.35); color: #fff; } .ccw-submit { width: 100%; padding: 0.75rem; background: #4f7cff; color: #fff; border: none; border-radius: 10px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: background 0.15s; margin-bottom: 1rem; } .ccw-submit:hover:not(:disabled) { background: #3b69ee; } .ccw-submit:disabled { background: #2a3a5c; cursor: not-allowed; opacity: 0.7; } .ccw-result { display: none; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.1rem; margin-top: 0.25rem; } .ccw-result.show { display: block; } .ccw-result-heading { font-size: 0.72rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 0.65rem; } .ccw-result-primary { padding: 0.9rem 1rem; background: rgba(79,124,255,0.08); border: 1px solid rgba(79,124,255,0.28); border-radius: 12px; cursor: pointer; transition: all 0.15s; margin-bottom: 0.6rem; } .ccw-result-primary:hover { background: rgba(79,124,255,0.16); border-color: rgba(79,124,255,0.5); } .ccw-result-label { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.2rem; } .ccw-result-desc { font-size: 0.8rem; color: var(--text-secondary); } .ccw-alt-label { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 0.5rem; margin-top: 0.75rem; } .ccw-alternatives { display: flex; gap: 0.5rem; flex-wrap: wrap; } .ccw-alt-btn { padding: 0.45rem 0.85rem; background: #0c1018; border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; color: #c8ccd6; font-family: 'DM Sans', sans-serif; font-size: 0.8rem; font-weight: 500; cursor: pointer; transition: all 0.15s; } .ccw-alt-btn:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.16); color: #fff; } .ccw-spinner { display: inline-block; width: 14px; height: 14px; border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff; border-radius: 50%; animation: ccwSpin 0.6s linear infinite; margin-right: 6px; vertical-align: middle; } @keyframes ccwSpin { to { transform: rotate(360deg); } } .ccw-hint { font-size: 0.72rem; color: #444e60; text-align: center; margin-top: 0.75rem; } .ccw-error { color: #f87171; font-size: 0.82rem; margin-bottom: 0.75rem; display: none; } .ccw-error.show { display: block; } @media (max-width: 600px) { .ccw-overlay { padding: 36px 0.75rem 0.75rem; } .ccw-fab .ccw-fab-text { display: none; } .ccw-fab { padding: 12px 14px; } } /* ─── MODULE WIZARDS ─── */ .mwiz-overlay { position: fixed; inset: 0; z-index: 9200; background: rgba(0,0,0,0.6); backdrop-filter: blur(5px); display: flex; align-items: center; justify-content: center; padding: 1rem; animation: mwizFadeIn 0.2s ease; } @keyframes mwizFadeIn { from { opacity: 0; } to { opacity: 1; } } .mwiz-modal { position: relative; background: #111623; border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; width: 100%; max-width: 540px; padding: 2rem; box-shadow: 0 24px 64px rgba(0,0,0,0.6); animation: mwizSlideUp 0.25s ease; max-height: 85vh; overflow-y: auto; } @keyframes mwizSlideUp { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } } .mwiz-close { position: absolute; top: 16px; right: 16px; background: transparent; border: none; color: var(--text-muted); font-size: 18px; cursor: pointer; padding: 4px 8px; border-radius: 6px; transition: background 0.15s; line-height: 1; z-index: 2; } .mwiz-close:hover { background: rgba(255,255,255,0.08); color: var(--text-primary); } .mwiz-header { text-align: center; margin-bottom: 1.25rem; } .mwiz-emoji { font-size: 2.5rem; margin-bottom: 0.5rem; } .mwiz-dots { display: flex; gap: 6px; justify-content: center; margin-bottom: 0.5rem; } .mwiz-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.15); transition: all 0.2s; } .mwiz-dot.active { background: #4f7cff; transform: scale(1.3); } .mwiz-dot.done { background: #22c55e; } .mwiz-step-label { font-size: 0.72rem; color: var(--text-muted); font-weight: 500; } .mwiz-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem; font-weight: 700; text-align: center; margin: 0 0 0.25rem; } .mwiz-step-title { font-size: 0.92rem; font-weight: 600; text-align: center; color: var(--text-secondary); margin: 0 0 1.25rem; } .mwiz-content { margin-bottom: 1.5rem; } .mwiz-footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1rem; } .mwiz-skip { background: transparent; border: none; color: var(--text-muted); font-size: 0.78rem; cursor: pointer; padding: 0.4rem 0; text-decoration: underline; text-underline-offset: 3px; font-family: inherit; } .mwiz-skip:hover { color: var(--text-secondary); } .mwiz-nav { display: flex; gap: 0.5rem; margin-left: auto; } .mwiz-back { background: var(--bg-secondary) !important; color: var(--text-primary) !important; border: 1px solid var(--border) !important; } .mwiz-feature-list { display: flex; flex-direction: column; gap: 1rem; } .mwiz-feature-item { display: flex; gap: 1rem; align-items: flex-start; } .mwiz-feature-icon { font-size: 1.5rem; flex-shrink: 0; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: rgba(79,124,255,0.1); border-radius: 10px; } .mwiz-feature-text h4 { font-size: 0.9rem; font-weight: 600; margin: 0 0 0.2rem; } .mwiz-feature-text p { font-size: 0.82rem; color: var(--text-secondary); margin: 0; line-height: 1.4; } .mwiz-option-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 0.75rem; } .mwiz-option { padding: 1rem; background: #0c1018; border: 1.5px solid rgba(255,255,255,0.08); border-radius: 12px; text-align: center; cursor: pointer; transition: all 0.15s; } .mwiz-option:hover { border-color: rgba(79,124,255,0.4); background: rgba(79,124,255,0.06); } .mwiz-option.selected { border-color: #4f7cff; background: rgba(79,124,255,0.12); box-shadow: 0 0 0 1px #4f7cff; } .mwiz-option-icon { font-size: 1.5rem; margin-bottom: 0.4rem; } .mwiz-option-label { font-weight: 600; font-size: 0.85rem; margin-bottom: 0.2rem; } .mwiz-option-desc { font-size: 0.72rem; color: var(--text-muted); } .mwiz-success-area { text-align: center; padding: 1rem 0; } .mwiz-success-icon { font-size: 3rem; margin-bottom: 0.75rem; } .mwiz-success-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; } .mwiz-success-desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; } .mwiz-info-box { background: rgba(79,124,255,0.08); border: 1px solid rgba(79,124,255,0.2); border-radius: 10px; padding: 0.75rem 1rem; font-size: 0.82rem; color: var(--text-secondary); margin-top: 1rem; } @media (max-width: 600px) { .mwiz-modal { padding: 1.5rem 1.25rem; max-width: 100%; } .mwiz-option-grid { grid-template-columns: 1fr 1fr; } .mwiz-footer { flex-direction: column; gap: 0.75rem; } .mwiz-nav { margin-left: 0; width: 100%; justify-content: flex-end; } }