:root { --darsh-gold: #0ae448; --darsh-gold-glow: rgba(10, 228, 72, 0.4); --darsh-bg: #0e0e0e; --darsh-card: #141414; --darsh-sidebar: #111111; --darsh-border: rgba(255, 255, 255, 0.1); --darsh-border-light: rgba(255, 255, 255, 0.05); --darsh-text: #FFFFFF; --darsh-text-muted: rgba(255, 255, 255, 0.5); --radius-xl: 32px; --radius-lg: 24px; --radius-md: 16px; --radius-sm: 8px } * { margin: 0; padding: 0; box-sizing: border-box } body { background: var(--darsh-bg); color: var(--darsh-text); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji"; -webkit-font-smoothing: antialiased; overflow: hidden; height: 100vh } .welcome-screen { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--darsh-bg); z-index: 9999; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1); overflow-y: auto; padding: 2rem 1rem } .welcome-screen.hidden { transform: translateY(-100%); opacity: 0 } .mascot-container { position: relative; width: 220px; height: 220px; margin: 0 auto 1rem; cursor: pointer; perspective: 1000px } .techie-avatar { width: 100%; height: 100%; filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3)); transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); animation: avatarFloat 6s ease-in-out infinite } .mascot-container:hover .techie-avatar { transform: scale(1.05) rotate(2deg) } @keyframes avatarFloat { 0%, 100% { transform: translateY(0) } 50% { transform: translateY(-15px) } } .video-container { width: 200px; height: 200px; border-radius: 50%; overflow: hidden; position: relative; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5); border: 2px solid rgba(255, 255, 255, 0.1) } .greeting-bubble { position: absolute; top: 20px; right: -40px; background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%); color: #333; padding: 10px 20px; border-radius: 20px 20px 20px 4px; font-weight: 800; font-size: 1rem; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.1); opacity: 0; transform: scale(0.5) translateY(20px) rotate(-5deg); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); border: 2px solid rgba(255, 255, 255, 0.5); z-index: 10 } .mascot-container:hover .greeting-bubble { opacity: 1; transform: scale(1) translateY(0) rotate(0deg) } .darsh-close-btn { position: absolute; top: 1.5rem; right: 1.5rem; width: 36px; height: 36px; border-radius: 50%; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; font-size: 1.2rem; z-index: 10 } .darsh-close-btn:hover { background: rgba(255, 255, 255, 0.15); transform: scale(1.1) } .welcome-screen h1 { font-size: 5.5rem; font-weight: 800; letter-spacing: -0.06em; line-height: 0.9; margin-bottom: 1.5rem; background: linear-gradient(180deg, #fff 0%, #888 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; text-transform: uppercase } .welcome-screen p { font-weight: 500; letter-spacing: -0.02em } .app-container { display: flex; height: 100vh; opacity: 0; transition: opacity 1s ease } .app-container.visible { opacity: 1 } .sidebar { width: 400px; background: var(--darsh-sidebar); border-right: 1px solid var(--darsh-border); display: flex; flex-direction: column; padding: 0; position: relative; z-index: 100 } .sidebar-brand { padding: 2.5rem; display: flex; align-items: center; gap: 1.25rem } .sidebar-logo-container { width: 48px; height: 48px; overflow: hidden; border-radius: 12px; border: 1px solid var(--darsh-border); background: var(--darsh-card) } .sidebar-logo { width: 100%; height: 100%; object-fit: cover } .sidebar-brand h2 { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em } .sidebar-scroll { flex: 1; overflow-y: auto; padding: 0 2.5rem 2.5rem } .sidebar-scroll::-webkit-scrollbar { width: 4px } .sidebar-scroll::-webkit-scrollbar-thumb { background: var(--darsh-border); border-radius: 10px } .settings-section { margin-bottom: 3rem } .section-title { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--darsh-text-muted); margin-bottom: 1.5rem } .form-field { margin-bottom: 1.5rem } .form-field label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 0.75rem; color: #888 } .form-field input, .form-field textarea { width: 100%; background: #111; border: 1px solid var(--darsh-border); border-radius: 12px; padding: 1rem 1.25rem; color: #fff; font-size: 0.95rem; transition: all 0.2s; outline: none } .form-field input:focus, .form-field textarea:focus { border-color: var(--darsh-gold); background: #161616 } .custom-select { position: relative; user-select: none } .select-trigger { background: #111; border: 1px solid var(--darsh-border); border-radius: 12px; padding: 1rem 1.25rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer } .select-dropdown { position: absolute; top: calc(100% + 8px); left: 0; width: 100%; background: #111; border: 1px solid var(--darsh-border); border-radius: 14px; overflow: hidden; z-index: 200; display: none; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8) } .custom-select.active .select-dropdown { display: block } .option { padding: 1rem 1.25rem; font-size: 0.95rem; transition: background 0.2s; cursor: pointer } .option:hover { background: var(--darsh-border) } .option.active { color: var(--darsh-gold); font-weight: 600 } .sidebar-footer { padding: 2.5rem; border-top: 1px solid var(--darsh-border); background: var(--darsh-sidebar) } .workstation { flex: 1; background: radial-gradient(circle at 50% 50%, #111111 0%, #000 100%); display: flex; align-items: center; justify-content: center; padding: 4rem; position: relative } .browser-frame { width: 100%; max-width: 1000px; height: 720px; background: #000; border: 1px solid var(--darsh-border); border-radius: 20px; box-shadow: 0 100px 200px -50px rgba(0, 0, 0, 1); display: flex; flex-direction: column; overflow: hidden; position: relative } .browser-toolbar { height: 54px; background: #0a0a0a; border-bottom: 1px solid var(--darsh-border); display: flex; align-items: center; padding: 0 1.5rem } .toolbar-dots { display: flex; gap: 8px } .dot { width: 12px; height: 12px; border-radius: 50% } .dot.red { background: #ff5f57 } .dot.yellow { background: #ffbd2e } .dot.green { background: #28c840 } .toolbar-address { margin-left: auto; background: rgba(255, 255, 255, 0.05); padding: 0.4rem 1.5rem; border-radius: 10px; font-size: 0.75rem; color: var(--darsh-text-muted); display: flex; align-items: center; gap: 10px } .browser-content { flex: 1; position: relative; overflow-y: auto; background: #000 } .hero-site { padding: 10rem 4rem; text-align: center } .hero-site h1 { font-size: 5rem; font-weight: 900; letter-spacing: -0.05em; line-height: 0.9; margin-bottom: 2rem } .hero-site p { font-size: 1.5rem; color: var(--darsh-text-muted); max-width: 600px; margin: 0 auto } .darsh-preview-container { position: sticky; bottom: 3rem; right: 3rem; display: flex; justify-content: flex-end; padding-bottom: 3rem; padding-right: 3rem; pointer-events: none } .darsh-fab { width: 80px; height: 80px; border-radius: 24px; background: var(--darsh-gold); color: #000; font-weight: 950; font-size: 2rem; border: none; box-shadow: 0 0 30px var(--darsh-gold-glow); cursor: pointer; transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); pointer-events: auto; display: flex; align-items: center; justify-content: center } .darsh-fab:hover { transform: scale(1.1) rotate(5deg) } .darsh-btn-inline { background: var(--darsh-gold); color: #000; padding: 1.25rem 3rem; border-radius: 16px; font-weight: 800; font-size: 1.1rem; border: none; cursor: pointer; transition: all 0.3s; pointer-events: auto } .btn-primary { width: 100%; background: var(--darsh-gold); color: #000; border: none; padding: 1.25rem; border-radius: 14px; font-weight: 700; font-size: 1rem; cursor: pointer; transition: all 0.3s } .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 30px var(--darsh-gold-glow) } .btn-pill { background: #fff; color: #000; padding: 1.25rem 3rem; border-radius: 40px; font-weight: 800; font-size: 1.2rem; border: none; cursor: pointer; transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) } .darsh-card.success { border-color: #10b981 } .success-icon { font-size: 4rem; color: #10b981; margin-bottom: 1.5rem; animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) } @keyframes popIn { 0% { transform: scale(0); opacity: 0 } 100% { transform: scale(1); opacity: 1 } } @media (max-width:1200px) { .app-container { flex-direction: column; overflow-y: auto } body { overflow: auto; height: auto } .sidebar { width: 100%; height: auto; border-right: none; border-bottom: 1px solid var(--darsh-border) } .sidebar-scroll { max-height: 300px } .workstation { padding: 2rem; height: auto; min-height: 600px } } @media (max-width:768px) { .app-container { flex-direction: column; height: auto; overflow-y: visible } .sidebar { width: 100%; height: auto; border-right: none; border-bottom: 1px solid var(--darsh-border); padding-bottom: 2rem } .sidebar-scroll { max-height: none; overflow-y: visible; padding-bottom: 0 } .sidebar-brand { justify-content: center; text-align: center } .welcome-screen h1 { font-size: 3rem; padding: 0 1rem; text-align: center } .mascot-container { transform: scale(0.85); margin-bottom: 0 } .workstation { padding: 2rem 1rem; min-height: auto; background: transparent } .browser-frame { display: none } .mobile-warning { display: block !important } .hero-site { padding: 4rem 1rem } .hero-site h1 { font-size: 2.5rem } .hero-site p { font-size: 1.1rem } .darsh-preview-container { display: none } } .setup-container { width: 95%; max-width: 1000px; background: #050505; border: 1px solid var(--darsh-border); border-radius: 32px; padding: 2.5rem; box-shadow: 0 40px 100px rgba(0, 0, 0, 0.9); max-height: 90vh; overflow-y: auto } .setup-header { display: flex; flex-direction: column; margin-bottom: 2.5rem; position: relative } .setup-header h2 { font-size: 2.5rem; font-weight: 900; margin-bottom: 0.5rem; letter-spacing: -0.03em } .setup-header p { color: var(--darsh-text-muted); font-weight: 500 } .setup-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem } .setup-card { background: rgba(255, 255, 255, 0.02); border: 1px solid var(--darsh-border); border-radius: 24px; padding: 1.5rem; display: flex; flex-direction: column; min-width: 0 } .setup-card.full-width { grid-column: 1 / -1 } .card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; gap: 1rem } .card-header h3 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #888; white-space: nowrap } .card-desc { font-size: 0.85rem; color: var(--darsh-text-muted); margin-bottom: 1rem } .code-block { background: #000; border: 1px solid var(--darsh-border); border-radius: 14px; padding: 1.25rem; font-family: 'SF Mono', 'Fira Code', monospace; font-size: 0.8rem; overflow-x: auto } .code-block pre { white-space: pre-wrap; word-break: break-all; line-height: 1.5 } .btn-copy-small { background: rgba(255, 255, 255, 0.08); color: #fff; border: 1px solid rgba(255, 255, 255, 0.1); padding: 0.5rem 1rem; border-radius: 8px; font-size: 0.75rem; font-weight: 700; cursor: pointer; transition: all 0.2s; white-space: nowrap } .btn-copy-small:hover { background: rgba(255, 255, 255, 0.15); transform: translateY(-1px) } .setup-footer { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--darsh-border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 2rem } .how-to h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.75rem } .how-to ul { list-style: none; color: var(--darsh-text-muted); font-size: 0.85rem; line-height: 1.6 } .how-to b { color: #fff } .form-field.error input { border-color: #f43f5e; box-shadow: 0 0 10px rgba(244, 63, 94, 0.2) } .error-msg { color: #f43f5e; font-size: 0.75rem; margin-top: 0.4rem; display: none } .form-field.error .error-msg { display: block } .btn-reset-preview { background: rgba(255, 255, 255, 0.1); border: none; color: var(--darsh-text-muted); padding: 4px 8px; border-radius: 6px; font-size: 0.65rem; font-weight: 700; cursor: pointer; text-transform: uppercase; letter-spacing: 0.05em; transition: all 0.2s } .btn-reset-preview:hover { background: var(--darsh-gold); color: #000 } @media (max-width:900px) { .setup-grid { grid-template-columns: 1fr } .setup-footer { flex-direction: column; align-items: flex-start } }