﻿:root { --bg-black: #050507; --bg-darker: #09090c; --bg-surface: #0f0f14; --bg-card: rgba(18, 18, 24, 0.75); --bg-card-hover: rgba(28, 28, 36, 0.9); --bg-glass: rgba(255, 255, 255, 0.04); --bg-glass-heavy: rgba(12, 12, 16, 0.88); --border-subtle: rgba(255, 255, 255, 0.08); --border-regular: rgba(255, 255, 255, 0.15); --border-bright: rgba(255, 255, 255, 0.35); --border-glow: rgba(255, 255, 255, 0.6); --text-white: #ffffff; --text-light: #eaeaf0; --text-muted: #9595a5; --text-dim: #5c5c6c; --fb-color: #1877f2; --fb-hover: #0c63d4; --fb-glow: rgba(24, 119, 242, 0.3); --radius-sm: 8px; --radius-md: 14px; --radius-lg: 20px; --radius-full: 9999px; --font-brand: 'Syne', sans-serif; --font-heading: 'Outfit', sans-serif; --font-body: 'Prompt', 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif; --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.5); --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.7); --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.85); --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1); --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1); --transition-bounce: 0.45s cubic-bezier(0.34, 1.56, 0.64, 1); } *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; } html, body { width: 100%; height: 100%; overflow: hidden;  color-scheme: dark; } body.fixed-viewport { background-color: var(--bg-black); color: var(--text-light); font-family: var(--font-body); font-size: 15px; line-height: 1.5; -webkit-font-smoothing: antialiased; position: relative; } ::-webkit-scrollbar { width: 6px; height: 6px; } ::-webkit-scrollbar-track { background: transparent; } ::-webkit-scrollbar-thumb { background: #252530; border-radius: var(--radius-full); } ::-webkit-scrollbar-thumb:hover { background: #45455a; } #bg-canvas { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: 1; pointer-events: none; } .grid-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-image:  linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px); background-size: 40px 40px; z-index: -2; pointer-events: none; mask-image: radial-gradient(circle at center, black 40%, transparent 90%); -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 90%); } .glow-sphere { position: fixed; border-radius: 50%; filter: blur(120px); pointer-events: none; z-index: -1; opacity: 0.12; } .glow-sphere-1 { width: 450px; height: 450px; background: #ffffff; top: -80px; left: 50%; transform: translateX(-50%); animation: pulseSphere 8s infinite alternate ease-in-out; } .glow-sphere-2 { width: 350px; height: 350px; background: #6e6e80; bottom: 5%; right: 5%; animation: pulseSphere 10s infinite alternate-reverse ease-in-out; } @keyframes pulseSphere { 0% { transform: scale(0.95) translate(-50%, 0); opacity: 0.08; } 100% { transform: scale(1.1) translate(-50%, 15px); opacity: 0.16; } } .app-layout { width: 100vw; height: 100vh; display: flex; flex-direction: column; overflow: hidden; position: relative; z-index: 1; } .navbar { height: 64px; flex-shrink: 0; background: rgba(8, 8, 12, 0.85); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-bottom: 1px solid var(--border-subtle); display: flex; align-items: center; z-index: 100; } .nav-container { width: 100%; max-width: 1300px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; } .brand-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; } .logo-wrapper { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%); border-radius: 10px; border: 1px solid rgba(255, 255, 255, 0.15); transition: var(--transition-smooth); } .brand-logo:hover .logo-wrapper { transform: scale(1.06) rotate(-3deg); border-color: #ffffff; box-shadow: 0 0 16px rgba(255, 255, 255, 0.35); } .brand-img { width: 26px; height: 26px; object-fit: contain; filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.6)); } .brand-text { display: flex; flex-direction: column; } .brand-title { font-family: var(--font-brand); font-size: 1.2rem; font-weight: 800; letter-spacing: 2px; color: #ffffff; line-height: 1; background: linear-gradient(180deg, #ffffff 30%, #a0a0b0 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; } .brand-tag { font-size: 0.65rem; letter-spacing: 1.5px; color: var(--text-muted); font-weight: 600; margin-top: 1px; } .nav-view-switcher { display: flex; align-items: center; gap: 6px; background: rgba(255, 255, 255, 0.04); padding: 4px 6px; border-radius: var(--radius-full); border: 1px solid var(--border-subtle); } .view-btn { background: transparent; border: none; color: var(--text-muted); padding: 6px 16px; border-radius: var(--radius-full); font-weight: 600; font-size: 0.88rem; cursor: pointer; transition: var(--transition-fast); display: flex; align-items: center; gap: 8px; } .view-btn:hover { color: #ffffff; } .view-btn.active { background: #ffffff; color: #000000; box-shadow: 0 2px 12px rgba(255, 255, 255, 0.35); } .view-btn.active .nav-counter { background: #000000; color: #ffffff; } .nav-counter { background: rgba(255, 255, 255, 0.12); padding: 1px 6px; border-radius: var(--radius-full); font-size: 0.72rem; font-weight: 700; } .action-icon-btn { width: 36px; height: 36px; border-radius: 9px; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border-subtle); color: var(--text-light); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition-fast); } .action-icon-btn:hover { background: rgba(255, 255, 255, 0.12); color: #ffffff; border-color: var(--border-regular); } .view-panel { display: none; flex: 1; height: calc(100vh - 64px); overflow: hidden; opacity: 0; transition: opacity 0.25s ease; } .view-panel.active { display: flex; opacity: 1; } .hero-balanced-wrapper { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 1rem 1.5rem 0.5rem; max-width: 900px; margin: 0 auto; height: 100%; } .hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 5px 14px; border-radius: var(--radius-full); background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.12); font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px; color: #d0d0dc; margin-bottom: 1.25rem; } .pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: #00ff88; box-shadow: 0 0 10px #00ff88; animation: dotPulse 1.8s infinite; } @keyframes dotPulse { 0% { transform: scale(0.9); opacity: 0.7; } 50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 12px #00ff88; } 100% { transform: scale(0.9); opacity: 0.7; } } .badge-accent { background: #ffffff; color: #000000; padding: 1px 5px; border-radius: 3px; font-size: 0.68rem; margin-left: 4px; } .hero-logo-showcase { position: relative; width: 140px; height: 140px; margin: 0 auto 1.25rem; display: flex; align-items: center; justify-content: center; perspective: 1000px; } .logo-aura { position: absolute; width: 180px; height: 180px; background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.05) 50%, transparent 70%); border-radius: 50%; filter: blur(20px); z-index: 1; animation: auraGlow 4s infinite alternate ease-in-out; } @keyframes auraGlow { 0% { transform: scale(0.95); opacity: 0.6; } 100% { transform: scale(1.15); opacity: 0.95; } } .hero-logo-img { width: 125px; height: 125px; object-fit: contain; position: relative; z-index: 2; filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 20px rgba(255, 255, 255, 0.5)); animation: floatLogo 5s ease-in-out infinite alternate; transition: transform 0.3s ease; } .hero-logo-showcase:hover .hero-logo-img { transform: scale(1.08) rotate(4deg); filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 30px rgba(255, 255, 255, 0.75)); } @keyframes floatLogo { 0% { transform: translateY(0px) rotate(0deg); } 50% { transform: translateY(-8px) rotate(2deg); } 100% { transform: translateY(3px) rotate(-2deg); } } .hero-title { font-family: var(--font-brand); font-size: clamp(3rem, 6vw, 4.8rem); font-weight: 900; letter-spacing: 5px; line-height: 1; margin-bottom: 0.5rem; } .chrome-text { background: linear-gradient(180deg, #ffffff 35%, #8e8e9e 85%, #4e4e5a 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 0 8px 25px rgba(0, 0, 0, 0.7); } .hero-subtitle { font-family: var(--font-heading); font-size: clamp(0.95rem, 1.8vw, 1.25rem); font-weight: 800; letter-spacing: 4px; color: #ffffff; margin-bottom: 2rem; text-transform: uppercase; text-shadow: 0 0 15px rgba(255, 255, 255, 0.3); } .hero-action-row { margin-bottom: 0; } .roster-view-container { flex: 1; display: flex; flex-direction: column; width: 100%; max-width: 1300px; margin: 0 auto; height: 100%; padding: 2.25rem 1.75rem 1.25rem; overflow: hidden; } .roster-top-bar { display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; margin-bottom: 1.75rem; flex-wrap: wrap; flex-shrink: 0; } .roster-left-group { display: flex; align-items: center; gap: 12px; } .btn-back { display: inline-flex; align-items: center; gap: 8px; background: rgba(255, 255, 255, 0.08); color: #ffffff; border: 1px solid var(--border-regular); padding: 7px 16px; border-radius: var(--radius-full); font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: var(--transition-fast); } .btn-back:hover { background: #ffffff; color: #000000; border-color: #ffffff; box-shadow: 0 0 15px rgba(255, 255, 255, 0.35); transform: translateX(-2px); } .roster-heading { font-size: 1.4rem; font-weight: 800; line-height: 1; } .roster-tagline { font-size: 0.75rem; color: var(--text-muted); font-family: monospace; letter-spacing: 1px; } .roster-search-wrap { position: relative; flex: 1; max-width: 380px; min-width: 200px; } .search-icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 0.95rem; pointer-events: none; } .search-input { width: 100%; padding: 9px 36px 9px 2.5rem; background: rgba(18, 18, 24, 0.85); border: 1px solid var(--border-regular); border-radius: var(--radius-full); color: #ffffff; font-size: 0.88rem; outline: none; transition: var(--transition-fast); } .search-input:focus { border-color: #ffffff; box-shadow: 0 0 15px rgba(255, 255, 255, 0.15); } .clear-search-btn { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--text-muted); cursor: pointer; } .filter-pills { display: flex; align-items: center; gap: 6px; } .filter-pill { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: var(--radius-full); background: rgba(255, 255, 255, 0.04); border: 1px solid var(--border-subtle); color: var(--text-muted); font-weight: 600; font-size: 0.8rem; cursor: pointer; white-space: nowrap; transition: var(--transition-fast); } .filter-pill:hover { background: rgba(255, 255, 255, 0.09); color: #ffffff; } .filter-pill.active { background: #ffffff; color: #000000; border-color: #ffffff; box-shadow: 0 2px 10px rgba(255, 255, 255, 0.25); } .filter-pill.active .pill-count { background: #000000; color: #ffffff; } .pill-count { background: rgba(255, 255, 255, 0.12); padding: 1px 6px; border-radius: var(--radius-full); font-size: 0.7rem; font-weight: 700; } .roster-grid-scroll-area { flex: 1; overflow-y: auto; padding-top: 0.5rem; padding-right: 8px; padding-bottom: 2rem; } .members-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; } .member-card { position: relative; background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 1.5rem 1.25rem; display: flex; flex-direction: column; align-items: center; text-align: center; backdrop-filter: blur(16px); transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease; overflow: hidden; } .member-card:hover { border-color: var(--border-bright); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 255, 255, 0.12); transform: translateY(-4px); } .member-avatar-box { position: relative; width: 80px; height: 80px; margin-bottom: 0.85rem; } .member-avatar-img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255, 255, 255, 0.2); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6); transition: var(--transition-smooth); } .member-card:hover .member-avatar-img { border-color: #ffffff; transform: scale(1.04); } .rank-badge { position: absolute; bottom: -3px; right: -3px; padding: 2px 7px; border-radius: var(--radius-full); font-size: 0.65rem; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.8); border: 1px solid rgba(255, 255, 255, 0.2); white-space: nowrap; } .rank-leader { background: linear-gradient(135deg, #ffffff, #dcdce6); color: #000000; border-color: #ffffff; } .rank-core { background: linear-gradient(135deg, #30303e, #181822); color: #ffffff; border-color: rgba(255, 255, 255, 0.35); } .rank-member { background: #14141a; color: #b0b0be; border-color: rgba(255, 255, 255, 0.15); } .rank-specialist { background: #222230; color: #d0d0e0; border-color: rgba(255, 255, 255, 0.25); } .rank-vanguard { background: linear-gradient(135deg, #3a1c1c, #1f1212); color: #ffb4b4; border-color: #ff4d4d; } .member-info { width: 100%; margin-bottom: 1rem; } .member-name { font-size: 1.1rem; font-weight: 700; color: #ffffff; margin-bottom: 0.15rem; word-break: break-word; } .member-role-title { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; margin-bottom: 0.5rem; } .member-bio { font-size: 0.82rem; color: var(--text-muted); line-height: 1.4; background: rgba(255, 255, 255, 0.02); padding: 6px 10px; border-radius: var(--radius-sm); border: 1px solid rgba(255, 255, 255, 0.04); min-height: 42px; display: flex; align-items: center; justify-content: center; } .member-card-footer { width: 100%; display: flex; gap: 6px; margin-top: auto; } .btn-facebook-link { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 7px 10px; border-radius: var(--radius-sm); background: rgba(24, 119, 242, 0.12); color: #ffffff; border: 1px solid rgba(24, 119, 242, 0.35); font-size: 0.82rem; font-weight: 600; transition: var(--transition-fast); text-decoration: none; } .btn-facebook-link:hover { background: var(--fb-color); border-color: var(--fb-color); box-shadow: 0 0 15px var(--fb-glow); } .btn-copy-fb { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border-subtle); color: var(--text-light); cursor: pointer; transition: var(--transition-fast); } .btn-copy-fb:hover { background: rgba(255, 255, 255, 0.15); color: #ffffff; border-color: #ffffff; } .empty-state { text-align: center; padding: 3rem 1rem; background: var(--bg-card); border-radius: var(--radius-md); border: 1px dashed var(--border-regular); } .empty-icon { font-size: 2.5rem; color: var(--text-dim); margin-bottom: 0.75rem; } .app-footer { height: 36px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; color: var(--text-dim); border-top: 1px solid rgba(255, 255, 255, 0.05); background: rgba(5, 5, 7, 0.9); } .app-footer strong { color: #ffffff; } .btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 8px 18px; border-radius: var(--radius-full); font-weight: 600; cursor: pointer; transition: var(--transition-smooth); border: 1px solid transparent; user-select: none; font-size: 0.9rem; text-decoration: none; } .btn-primary { background: #ffffff; color: #000000; border-color: #ffffff; box-shadow: 0 4px 18px rgba(255, 255, 255, 0.25); } .btn-primary:hover { background: #e8e8f0; box-shadow: 0 6px 22px rgba(255, 255, 255, 0.4); transform: translateY(-2px); } .btn-outline { background: rgba(255, 255, 255, 0.04); color: #ffffff; border-color: var(--border-regular); } .btn-outline:hover { background: rgba(255, 255, 255, 0.1); border-color: #ffffff; transform: translateY(-2px); } .btn-danger { background: #e63946; color: #ffffff; border-color: #e63946; } .btn-danger:hover { background: #d62828; } .btn-lg { padding: 12px 28px; font-size: 1rem; } .btn-sm { padding: 6px 12px; font-size: 0.8rem; border-radius: var(--radius-sm); } .glow-btn { box-shadow: 0 0 20px rgba(255, 255, 255, 0.25); animation: glowPulsate 3s infinite alternate ease-in-out; } @keyframes glowPulsate { 0% { box-shadow: 0 0 15px rgba(255, 255, 255, 0.2); } 100% { box-shadow: 0 0 26px rgba(255, 255, 255, 0.4); } } .modal-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 1.5rem; opacity: 0; visibility: hidden; transition: opacity 0.25s ease, visibility 0.25s ease; } .modal-overlay.active { opacity: 1; visibility: visible; } .modal-dialog { width: 100%; max-width: 580px; background: #0e0e14; border: 1px solid var(--border-bright); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg), 0 0 35px rgba(255, 255, 255, 0.1); transform: scale(0.94); transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1); max-height: 90vh; overflow-y: auto; } .modal-overlay.active .modal-dialog { transform: scale(1); } .modal-dialog.modal-sm { max-width: 400px; padding: 1.75rem; } .modal-header { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border-subtle); } .modal-title-group { display: flex; align-items: center; gap: 10px; } .modal-icon-badge { width: 38px; height: 38px; border-radius: 9px; background: rgba(255, 255, 255, 0.08); border: 1px solid var(--border-regular); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: #ffffff; } .modal-title { font-size: 1.15rem; font-weight: 700; } .modal-subtitle { font-size: 0.72rem; color: var(--text-muted); } .modal-close-btn { background: none; border: none; color: var(--text-muted); font-size: 1.2rem; width: 32px; height: 32px; border-radius: 6px; display: flex; align-items: center; justify-content: center; cursor: pointer; } .modal-close-btn:hover { background: rgba(255, 255, 255, 0.1); color: #ffffff; } .modal-form { padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; } .form-row { display: flex; gap: 1rem; } .form-group { display: flex; flex-direction: column; gap: 5px; } .form-group.flex-1 { flex: 1; } .form-label { font-size: 0.82rem; font-weight: 600; color: var(--text-light); display: flex; align-items: center; gap: 6px; } .form-label .required { color: #ff4d4d; } .form-input { width: 100%; padding: 9px 12px; background: rgba(255, 255, 255, 0.04); border: 1px solid var(--border-regular); border-radius: var(--radius-sm); color: #ffffff; font-size: 0.88rem; outline: none; transition: var(--transition-fast); } .form-input:focus { border-color: #ffffff; box-shadow: 0 0 12px rgba(255, 255, 255, 0.15); background: rgba(255, 255, 255, 0.08); } .custom-select { appearance: none; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 10px center; background-size: 16px; padding-right: 32px; cursor: pointer; } .custom-select option { background: #14141b; color: #ffffff; } .input-with-icon { position: relative; width: 100%; } .input-icon { position: absolute; left: 10px; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 0.9rem; pointer-events: none; } .input-icon.fb-icon { color: #1877f2; } .form-input.with-icon { padding-left: 32px; } .form-textarea { resize: vertical; min-height: 60px; } .avatar-input-wrapper { display: flex; gap: 12px; align-items: flex-start; background: rgba(255, 255, 255, 0.02); padding: 10px; border-radius: var(--radius-md); border: 1px solid var(--border-subtle); } .avatar-preview-box { width: 64px; height: 64px; border-radius: 50%; overflow: hidden; border: 2px solid rgba(255, 255, 255, 0.3); flex-shrink: 0; } .avatar-preview-box img { width: 100%; height: 100%; object-fit: cover; } .avatar-controls { flex: 1; display: flex; flex-direction: column; gap: 5px; } .file-upload-btn-wrap { display: flex; align-items: center; gap: 8px; } .file-btn { cursor: pointer; } .file-chosen-text { font-size: 0.75rem; color: var(--text-muted); } .preset-avatars-bar { margin-top: 4px; } .preset-label { display: block; font-size: 0.72rem; color: var(--text-muted); margin-bottom: 3px; } .preset-list { display: flex; gap: 5px; flex-wrap: wrap; } .preset-avatar-btn { width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--border-regular); overflow: hidden; cursor: pointer; background: none; padding: 0; } .preset-avatar-btn:hover, .preset-avatar-btn.selected { border-color: #ffffff; transform: scale(1.15); } .preset-avatar-btn img { width: 100%; height: 100%; object-fit: cover; } .modal-actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; margin-top: 0.25rem; } .toast-container { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2000; display: flex; flex-direction: column; gap: 8px; pointer-events: none; } .toast { background: #14141b; border: 1px solid var(--border-bright); color: #ffffff; padding: 8px 18px; border-radius: var(--radius-full); box-shadow: 0 6px 25px rgba(0, 0, 0, 0.8), 0 0 12px rgba(255, 255, 255, 0.2); display: flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 600; animation: toastIn 0.3s cubic-bezier(0.16, 1, 0.3, 1), toastOut 0.3s cubic-bezier(0.16, 1, 0.3, 1) 2.5s forwards; } @keyframes toastIn { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } } @keyframes toastOut { from { transform: translateY(0); opacity: 1; } to { transform: translateY(-15px); opacity: 0; } } @media (max-width: 768px) { .stats-bar-balanced { flex-wrap: wrap; border-radius: var(--radius-md); justify-content: center; gap: 1rem; } .stat-pill-divider { display: none; } .form-row { flex-direction: column; } .avatar-input-wrapper { flex-direction: column; align-items: center; } }