:root{--bg:#0f0f0f;--surface:#1a1a1a;--surface-alt:#222;--surface-elevated:#2a2a2a;--text:#e8e8e8;--text-muted:#999;--text-light:#666;--border:#333;--border-light:#2a2a2a;--accent:#f60;--accent-dark:#e65c00;--accent-light:#331a00;--green:#22c55e;--green-bg:#0a2a14;--amber:#f59e0b;--amber-bg:#2a1f0a;--red:#ef4444;--red-bg:#2a0a0a;--nav-bg:#0a0a0a;--nav-text:#fff;--radius-sm:4px;--radius:8px;--radius-lg:12px;--space-xs:4px;--space-sm:8px;--space-md:16px;--space-lg:24px;--space-xl:32px;--font:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif}*,:before,:after{box-sizing:border-box;margin:0;padding:0}html{font-family:var(--font);color:var(--text);background:var(--bg);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:16px;line-height:1.5}body{min-height:100dvh}img,svg{max-width:100%;display:block}a{color:var(--accent);text-decoration:none}a:hover{text-decoration:underline}ul,ol{list-style:none}input,select,textarea,button{font:inherit;color:inherit}h1,h2,h3,h4,h5,h6{color:var(--text);line-height:1.2}.app-layout{flex-direction:column;min-height:100dvh;display:flex}.app-header{background:var(--surface);border-bottom:1px solid var(--border);height:48px;padding:0 var(--space-md);z-index:100;justify-content:space-between;align-items:center;display:flex;position:fixed;top:0;left:0;right:0}.app-header__logo{color:var(--accent);letter-spacing:-.5px;font-size:18px;font-weight:700}.app-header__right{align-items:center;gap:var(--space-sm);display:flex}.app-header__user{color:var(--text-muted);font-size:14px}.app-header__user-link{color:var(--text-muted);text-decoration:none}.app-header__user-link:hover{color:var(--accent)}.app-header__logout{border:1px solid var(--border);color:var(--text-muted);border-radius:var(--radius-sm);cursor:pointer;background:0 0;padding:4px 12px;font-size:13px}.app-header__logout:hover{color:var(--text);border-color:var(--text-muted)}.app-content{padding:calc(48px + var(--space-md)) var(--space-md) calc(56px + var(--space-md));flex:1;width:100%;max-width:800px;margin:0 auto}.nav-bar{background:var(--nav-bg);border-top:1px solid var(--border);z-index:100;justify-content:space-around;align-items:center;height:56px;display:flex;position:fixed;bottom:0;left:0;right:0}.nav-bar__link{color:var(--text-muted);padding:var(--space-xs);border-radius:var(--radius-sm);flex-direction:column;align-items:center;gap:2px;font-size:11px;text-decoration:none;transition:color .15s;display:flex}.nav-bar__link:hover{color:var(--text);text-decoration:none}.nav-bar__link--active{color:var(--accent)}.nav-bar__icon{font-size:20px;line-height:1}@media (width>=768px){.app-layout{flex-direction:row;padding-top:48px}.nav-bar{width:200px;height:auto;padding:var(--space-md) 0;border-top:none;border-right:1px solid var(--border);justify-content:flex-start;align-items:stretch;gap:var(--space-xs);flex-direction:column;position:fixed;inset:48px auto 0 0}.nav-bar__link{gap:var(--space-sm);padding:var(--space-sm) var(--space-md);border-radius:0;flex-direction:row;font-size:14px}.nav-bar__link--active{background:var(--accent-light)}.nav-bar__icon{text-align:center;width:24px;font-size:18px}.app-content{padding:var(--space-lg);padding-bottom:var(--space-lg);margin-left:200px}}.public-layout{min-height:100dvh}.public-content{max-width:440px;padding:var(--space-xl) var(--space-md);margin:0 auto}.btn{justify-content:center;align-items:center;gap:var(--space-sm);border-radius:var(--radius);cursor:pointer;border:none;padding:10px 20px;font-size:14px;font-weight:600;text-decoration:none;transition:background .15s,opacity .15s;display:inline-flex}.btn:hover{text-decoration:none}.btn:disabled{opacity:.5;cursor:not-allowed}.btn--primary{background:var(--accent);color:#fff}.btn--primary:hover:not(:disabled){background:var(--accent-dark)}.btn--secondary{background:var(--surface-elevated);color:var(--text);border:1px solid var(--border)}.btn--secondary:hover:not(:disabled){background:var(--surface-alt)}.btn--danger{background:var(--red);color:#fff}.btn--danger:hover:not(:disabled){opacity:.9}.btn--small{padding:6px 12px;font-size:13px}.btn--full{width:100%}.card{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-lg);padding:var(--space-md)}.card--clickable{cursor:pointer;transition:border-color .15s,background .15s}.card--clickable:hover{border-color:var(--accent);background:var(--surface-alt)}.badge{border-radius:999px;align-items:center;padding:2px 10px;font-size:12px;font-weight:600;line-height:1.5;display:inline-flex}.badge--available,.badge--confirmed,.badge--approved{background:var(--green-bg);color:var(--green)}.badge--pending{background:var(--amber-bg);color:var(--amber)}.badge--declined,.badge--rejected,.badge--cancelled{background:var(--red-bg);color:var(--red)}.badge--fighter{background:var(--accent-light);color:var(--accent)}.badge--gym{background:var(--green-bg);color:var(--green)}.badge--manager{background:var(--amber-bg);color:var(--amber)}.badge--promoter{color:#60a5fa;background:#60a5fa26}.form-field{margin-bottom:var(--space-md)}.form-field__label{color:var(--text-muted);margin-bottom:var(--space-xs);text-transform:uppercase;letter-spacing:.5px;font-size:13px;font-weight:600;display:block}.form-field__input{background:var(--surface-alt);border:1px solid var(--border);border-radius:var(--radius);width:100%;color:var(--text);outline:none;padding:10px 12px;font-size:15px;transition:border-color .15s}.form-field__input:focus{border-color:var(--accent)}.form-field__input--error{border-color:var(--red)}.form-field__error{color:var(--red);margin-top:var(--space-xs);font-size:13px}select.form-field__input{appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");background-position:right 12px center;background-repeat:no-repeat;padding-right:32px}textarea.form-field__input{resize:vertical;min-height:80px}.toggle{align-items:center;gap:var(--space-sm);cursor:pointer;-webkit-user-select:none;user-select:none;color:var(--text);padding:var(--space-sm) 0;font-family:var(--font);background:0 0;border:none;width:auto;display:inline-flex}.toggle__track{background:var(--surface-elevated);border:1px solid var(--border);border-radius:999px;flex-shrink:0;width:52px;height:28px;transition:background .2s,border-color .2s;position:relative}.toggle--active .toggle__track{background:var(--green);border-color:var(--green)}.toggle__thumb{background:#fff;border-radius:50%;width:22px;height:22px;transition:transform .2s;position:absolute;top:2px;left:2px}.toggle--active .toggle__thumb{transform:translate(24px)}.toggle__label{font-size:14px;font-weight:500}.status-badge{border-radius:999px;align-items:center;gap:6px;padding:4px 12px;font-size:13px;font-weight:600;display:inline-flex}.status-badge__dot{border-radius:50%;width:8px;height:8px}.status-badge--available .status-badge__dot{background:var(--green)}.status-badge--available{background:var(--green-bg);color:var(--green)}.status-badge--pending .status-badge__dot{background:var(--amber)}.status-badge--pending{background:var(--amber-bg);color:var(--amber)}.status-badge--declined .status-badge__dot,.status-badge--cancelled .status-badge__dot{background:var(--red)}.status-badge--declined,.status-badge--cancelled{background:var(--red-bg);color:var(--red)}.status-badge--confirmed .status-badge__dot{background:var(--green)}.status-badge--confirmed{background:var(--green-bg);color:var(--green)}.modal-overlay{padding:var(--space-md);z-index:200;background:#0009;justify-content:center;align-items:center;display:flex;position:fixed;inset:0}.modal{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-lg);padding:var(--space-lg);width:100%;max-width:480px;max-height:90dvh;overflow-y:auto}.modal__title{margin-bottom:var(--space-md);font-size:18px;font-weight:700}.spinner{border:3px solid var(--border);border-top-color:var(--accent);width:32px;height:32px;margin:var(--space-xl) auto;border-radius:50%;animation:.6s linear infinite spin}@keyframes spin{to{transform:rotate(360deg)}}.empty-state{text-align:center;padding:var(--space-xl) var(--space-md);color:var(--text-muted)}.empty-state__icon{margin-bottom:var(--space-md);opacity:.4;font-size:48px}.empty-state__title{color:var(--text);margin-bottom:var(--space-sm);font-size:18px;font-weight:600}.empty-state__text{max-width:300px;margin:0 auto;font-size:14px}.error-message{background:var(--red-bg);color:var(--red);padding:var(--space-sm) var(--space-md);border-radius:var(--radius);margin-bottom:var(--space-md);font-size:14px}.page-header{margin-bottom:var(--space-lg);justify-content:space-between;align-items:center;gap:var(--space-md);display:flex}.page-header__title{font-size:24px;font-weight:700}.profile-section{margin-bottom:var(--space-lg)}.profile-section__title{color:var(--text-muted);text-transform:uppercase;letter-spacing:.5px;margin-bottom:var(--space-sm);font-size:13px;font-weight:600}.profile-field{padding:var(--space-sm) 0;border-bottom:1px solid var(--border-light);justify-content:space-between;align-items:center;display:flex}.profile-field__label{color:var(--text-muted);font-size:14px}.profile-field__value{text-align:right;font-size:14px;font-weight:500}.filter-bar{gap:var(--space-sm);margin-bottom:var(--space-md);flex-wrap:wrap;display:flex}.filter-bar__input{background:var(--surface-alt);border:1px solid var(--border);border-radius:var(--radius);min-width:200px;color:var(--text);outline:none;flex:1;padding:8px 12px;font-size:14px}.filter-bar__input:focus{border-color:var(--accent)}.filter-bar__select{background:var(--surface-alt);border:1px solid var(--border);border-radius:var(--radius);color:var(--text);appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");background-position:right 10px center;background-repeat:no-repeat;outline:none;padding:8px 28px 8px 12px;font-size:14px}.filter-bar__select:focus{border-color:var(--accent)}.fighter-card{align-items:center;gap:var(--space-md);color:var(--text);text-decoration:none;display:flex}.fighter-card:hover{text-decoration:none}.fighter-card__info{flex:1;min-width:0}.fighter-card__name{margin-bottom:2px;font-size:16px;font-weight:600}.fighter-card__meta{color:var(--text-muted);gap:var(--space-sm);flex-wrap:wrap;font-size:13px;display:flex}.fighter-card__right{text-align:right;flex-shrink:0}.fighter-card__record{font-variant-numeric:tabular-nums;font-size:15px;font-weight:700}.list-card{color:var(--text);text-decoration:none;display:block}.list-card:hover{text-decoration:none}.role-grid{gap:var(--space-sm);margin-bottom:var(--space-md);grid-template-columns:1fr 1fr;display:grid}.role-card{padding:var(--space-md);background:var(--surface-alt);border:2px solid var(--border);border-radius:var(--radius-lg);cursor:pointer;text-align:center;transition:border-color .15s,background .15s}.role-card:hover{border-color:var(--text-muted)}.role-card--selected{border-color:var(--accent);background:var(--accent-light)}.role-card__icon{margin-bottom:var(--space-xs);font-size:28px}.role-card__name{font-size:14px;font-weight:600}.role-card__desc{color:var(--text-muted);margin-top:2px;font-size:12px}.landing{background:radial-gradient(ellipse 600px 400px at 50% 0%, #ff66000f 0%, transparent 100%), repeating-linear-gradient(0deg, transparent, transparent 60px, #ffffff04 60px, #ffffff04 61px), repeating-linear-gradient(90deg, transparent, transparent 60px, #ffffff04 60px, #ffffff04 61px), var(--bg);min-height:100dvh}.landing__nav{padding:var(--space-md) var(--space-lg);justify-content:space-between;align-items:center;max-width:1100px;margin:0 auto;display:flex}.landing__logo{align-items:center;gap:var(--space-sm);color:var(--accent);letter-spacing:-.5px;font-size:22px;font-weight:800;display:flex}.landing__logo-icon{width:28px;height:28px}.landing__nav-links{gap:var(--space-sm);display:flex}.landing__hero{text-align:center;padding:60px var(--space-md) 60px;max-width:700px;margin:0 auto}.landing__hero-logo{width:min(360px,80%);height:auto;margin-bottom:var(--space-lg);filter:drop-shadow(0 0 40px #ff660026)}.landing__hero h1{letter-spacing:-1px;margin-bottom:var(--space-md);font-size:48px;font-weight:800;line-height:1.1}.landing__hero h1 span{color:var(--accent)}.landing__hero p{color:var(--text-muted);margin-bottom:var(--space-xl);font-size:18px;line-height:1.6}.landing__cta{gap:var(--space-sm);flex-wrap:wrap;justify-content:center;display:flex}.landing__features{max-width:1000px;padding:60px var(--space-md);gap:var(--space-lg);grid-template-columns:repeat(auto-fit,minmax(280px,1fr));margin:0 auto;display:grid}.landing__feature{padding:var(--space-lg);background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-lg)}.landing__feature-icon{margin-bottom:var(--space-sm);font-size:32px}.landing__feature h3{margin-bottom:var(--space-sm);font-size:18px;font-weight:700}.landing__feature p{color:var(--text-muted);font-size:14px;line-height:1.6}.landing__section{max-width:700px;padding:60px var(--space-md);text-align:center;margin:0 auto}.landing__section h2{margin-bottom:var(--space-md);font-size:32px;font-weight:800}.landing__section p{color:var(--text-muted);margin-bottom:var(--space-lg);font-size:16px;line-height:1.6}.landing__pricing{gap:var(--space-md);max-width:800px;padding:0 var(--space-md) 60px;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));margin:0 auto;display:grid}.landing__price-card{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-lg);padding:var(--space-lg);text-align:center}.landing__price-card--featured{border-color:var(--accent)}.landing__price-card h3{margin-bottom:var(--space-sm);text-transform:uppercase;letter-spacing:1px;font-size:16px;font-weight:600}.landing__price-amount{margin-bottom:var(--space-sm);font-size:36px;font-weight:800}.landing__price-amount span{color:var(--text-muted);font-size:16px;font-weight:400}.landing__price-features{text-align:left;color:var(--text-muted);margin-top:var(--space-md);font-size:14px}.landing__price-features li{padding:var(--space-xs) 0}.landing__price-features li:before{content:"- ";color:var(--accent)}.landing__footer{justify-content:center;align-items:center;gap:var(--space-sm);padding:var(--space-lg);color:var(--text-light);border-top:1px solid var(--border);font-size:13px;display:flex}.landing__footer-icon{opacity:.5;width:20px;height:20px}.dashboard-grid{gap:var(--space-md);display:grid}.dashboard-card{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-lg);padding:var(--space-lg)}.dashboard-card__title{color:var(--text-muted);text-transform:uppercase;letter-spacing:.5px;margin-bottom:var(--space-md);font-size:13px;font-weight:600}.dashboard-card__value{font-size:28px;font-weight:800}.checkbox{align-items:center;gap:var(--space-sm);cursor:pointer;-webkit-user-select:none;user-select:none;font-size:14px;display:flex}.checkbox input{width:18px;height:18px;accent-color:var(--accent)}.auth-divider{align-items:center;gap:var(--space-md);margin:var(--space-lg) 0;color:var(--text-muted);text-transform:uppercase;letter-spacing:.5px;font-size:13px;display:flex}.auth-divider:before,.auth-divider:after{content:"";background:var(--border);flex:1;height:1px}.google-btn-container{justify-content:center;display:flex}.help-tip{margin-left:var(--space-xs);vertical-align:middle;align-items:center;display:inline-flex;position:relative}.help-tip__icon{border:1px solid var(--text-light);width:16px;height:16px;color:var(--text-light);cursor:pointer;font-size:10px;font-weight:700;line-height:1;font-family:var(--font);background:0 0;border-radius:50%;justify-content:center;align-items:center;padding:0;transition:border-color .15s,color .15s;display:inline-flex}.help-tip__icon:hover{border-color:var(--text-muted);color:var(--text-muted)}.help-tip__popup{width:max-content;max-width:min(280px,90vw);padding:var(--space-sm) var(--space-md);background:var(--surface-elevated);color:var(--text);border:1px solid var(--border);border-radius:var(--radius);z-index:100;pointer-events:none;opacity:0;text-transform:none;letter-spacing:0;font-size:13px;font-weight:400;line-height:1.5;transition:opacity .15s;position:absolute;left:50%;transform:translate(-50%)}.help-tip__popup--above{bottom:calc(100% + 8px)}.help-tip__popup--above:after{content:"";border:5px solid #0000;border-top-color:var(--surface-elevated);position:absolute;top:100%;left:50%;transform:translate(-50%)}.help-tip__popup--below{top:calc(100% + 8px)}.help-tip__popup--below:after{content:"";border:5px solid #0000;border-bottom-color:var(--surface-elevated);position:absolute;bottom:100%;left:50%;transform:translate(-50%)}.help-tip__popup--visible{opacity:1;pointer-events:auto}.welcome-banner{background:var(--surface);border:1px solid var(--accent);border-left:4px solid var(--accent);border-radius:var(--radius-lg);padding:var(--space-lg);margin-bottom:var(--space-lg)}.welcome-banner__title{margin-bottom:var(--space-sm);font-size:18px;font-weight:700}.welcome-banner__text{color:var(--text-muted);margin-bottom:var(--space-md);font-size:14px;line-height:1.6}.welcome-banner__actions{gap:var(--space-sm);display:flex}.help-page{max-width:800px}.help-page__intro{color:var(--text-muted);margin-bottom:var(--space-lg);font-size:15px;line-height:1.7}.help-section{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-lg);margin-bottom:var(--space-md);overflow:hidden}.help-section__title{width:100%;padding:var(--space-md) var(--space-lg);color:var(--text);font-size:17px;font-weight:700;font-family:var(--font);cursor:pointer;text-align:left;background:0 0;border:none;justify-content:space-between;align-items:center;transition:background .15s;display:flex}.help-section__title:hover{background:var(--surface-alt)}.help-section__title-text{align-items:center;gap:var(--space-sm);display:flex}.help-section__icon{font-size:20px}.help-section__chevron{color:var(--text-muted);font-size:12px;transition:transform .2s}.help-section__content{max-height:0;padding:0 var(--space-lg);transition:max-height .35s,padding .35s;overflow:hidden}.help-section--open .help-section__content{max-height:2000px;padding:0 var(--space-lg) var(--space-lg)}.help-section__content h4{color:var(--text);margin-top:var(--space-lg);margin-bottom:var(--space-sm);font-size:15px;font-weight:700}.help-section__content h4:first-child{margin-top:0}.help-section__content p{color:var(--text-muted);margin-bottom:var(--space-sm);font-size:14px;line-height:1.7}.help-section__content ul,.help-section__content ol{padding-left:var(--space-lg);margin-bottom:var(--space-sm)}.help-section__content li{color:var(--text-muted);margin-bottom:var(--space-xs);font-size:14px;line-height:1.7}.help-section__content strong{color:var(--text);font-weight:600}.help-steps{counter-reset:help-step;padding-left:0;list-style:none}.help-steps li{counter-increment:help-step;padding-left:40px;padding-bottom:var(--space-md);border-left:2px solid var(--border);margin-left:14px;position:relative}.help-steps li:last-child{border-left-color:#0000;padding-bottom:0}.help-steps li:before{content:counter(help-step);background:var(--accent);color:#fff;border-radius:50%;justify-content:center;align-items:center;width:24px;height:24px;font-size:13px;font-weight:700;display:flex;position:absolute;top:0;left:-13px}.help-faq__item{padding:var(--space-md) 0;border-bottom:1px solid var(--border-light)}.help-faq__item:last-child{border-bottom:none;padding-bottom:0}.help-faq__item:first-child{padding-top:0}.help-faq__question{color:var(--text);margin-bottom:var(--space-sm);margin-top:0;font-size:15px;font-weight:700}.help-faq__answer{color:var(--text-muted);margin-bottom:0;font-size:14px;line-height:1.7}.help-section__content .badge{vertical-align:baseline;padding:1px 8px;font-size:11px}.mt-sm{margin-top:var(--space-sm)}.mt-md{margin-top:var(--space-md)}.mt-lg{margin-top:var(--space-lg)}.mb-sm{margin-bottom:var(--space-sm)}.mb-md{margin-bottom:var(--space-md)}.mb-lg{margin-bottom:var(--space-lg)}.text-muted{color:var(--text-muted)}.text-center{text-align:center}.flex-between{justify-content:space-between;align-items:center;display:flex}.chat-layout{height:calc(100dvh - 104px);margin:calc(-1 * var(--space-md));margin-top:calc(-1 * var(--space-md));display:flex;overflow:hidden}@media (width>=768px){.chat-layout{height:calc(100dvh - 48px);margin:calc(-1 * var(--space-lg));border-radius:var(--radius-lg);border:1px solid var(--border);overflow:hidden}}.chat-sidebar{background:var(--surface);border-right:1px solid var(--border);flex-direction:column;width:100%;max-width:100%;display:flex;overflow:hidden}@media (width>=768px){.chat-sidebar{width:320px;min-width:320px;max-width:320px}}.chat-sidebar__header{padding:var(--space-md);border-bottom:1px solid var(--border);flex-shrink:0;justify-content:space-between;align-items:center;display:flex}.chat-sidebar__title{margin:0;font-size:18px;font-weight:700}.chat-conv-list{flex:1;overflow-y:auto}.chat-conv-item{gap:var(--space-xs);width:100%;padding:var(--space-md);border:none;border-bottom:1px solid var(--border-light);color:var(--text);cursor:pointer;text-align:left;font-family:var(--font);background:0 0;flex-direction:column;transition:background .15s;display:flex}.chat-conv-item:hover{background:var(--surface-alt)}.chat-conv-item--active{background:var(--surface-alt);border-left:3px solid var(--accent)}.chat-conv-item__top{justify-content:space-between;align-items:center;gap:var(--space-sm);display:flex}.chat-conv-item__name{align-items:center;gap:var(--space-xs);min-width:0;font-size:14px;font-weight:600;display:flex}.chat-conv-item__name .badge{padding:1px 6px;font-size:10px}.chat-conv-item__meta{color:var(--text-muted);white-space:nowrap;flex-shrink:0;font-size:12px}.chat-conv-item__bottom{justify-content:space-between;align-items:center;gap:var(--space-sm);display:flex}.chat-conv-item__preview{color:var(--text-muted);text-overflow:ellipsis;white-space:nowrap;flex:1;min-width:0;font-size:13px;overflow:hidden}.chat-unread{background:var(--accent);color:#fff;border-radius:999px;flex-shrink:0;justify-content:center;align-items:center;min-width:20px;height:20px;padding:0 6px;font-size:11px;font-weight:700;display:inline-flex}.chat-thread{background:var(--bg);flex-direction:column;flex:1;min-width:0;display:flex}.chat-thread--empty{justify-content:center;align-items:center}.chat-thread__header{align-items:center;gap:var(--space-sm);padding:var(--space-md);border-bottom:1px solid var(--border);background:var(--surface);flex-shrink:0;display:flex}.chat-thread__back{color:var(--accent);cursor:pointer;padding:0 var(--space-sm) 0 0;font-size:18px;font-family:var(--font);background:0 0;border:none}.chat-thread__header-name{font-size:16px;font-weight:600}.chat-thread__messages{padding:var(--space-md);gap:var(--space-sm);flex-direction:column;flex:1;display:flex;overflow-y:auto}.chat-bubble{max-width:75%;padding:var(--space-sm) var(--space-md);border-radius:var(--radius-lg);word-wrap:break-word;overflow-wrap:break-word}.chat-bubble--mine{background:var(--accent);color:#fff;border-bottom-right-radius:var(--radius-sm);align-self:flex-end}.chat-bubble--theirs{background:var(--surface);color:var(--text);border:1px solid var(--border);border-bottom-left-radius:var(--radius-sm);align-self:flex-start}.chat-bubble__body{white-space:pre-wrap;font-size:14px;line-height:1.5}.chat-bubble__time{margin-top:var(--space-xs);opacity:.7;font-size:11px}.chat-bubble--mine .chat-bubble__time{text-align:right;color:#ffffffb3}.chat-bubble--theirs .chat-bubble__time{color:var(--text-muted)}.chat-typing{color:var(--text-muted);padding:var(--space-xs) var(--space-sm);font-size:13px;font-style:italic}.chat-input{align-items:flex-end;gap:var(--space-sm);padding:var(--space-sm) var(--space-md);border-top:1px solid var(--border);background:var(--surface);flex-shrink:0;display:flex}.chat-input__field{padding:var(--space-sm) var(--space-md);background:var(--surface-alt);border:1px solid var(--border);border-radius:var(--radius-lg);color:var(--text);font-size:14px;font-family:var(--font);resize:none;outline:none;flex:1;max-height:96px;line-height:1.5;overflow-y:auto}.chat-input__field:focus{border-color:var(--accent)}.chat-input__send{padding:var(--space-sm) var(--space-md);border-radius:var(--radius-lg);flex-shrink:0;font-size:14px}.chat-empty{padding:var(--space-xl);justify-content:center;align-items:center;gap:var(--space-md);flex-direction:column;flex:1;display:flex}.chat-empty__text{color:var(--text-muted);font-size:14px}.chat-new-btn{flex-shrink:0}.chat-user-search{padding:var(--space-sm) var(--space-md);border-bottom:1px solid var(--border)}.chat-user-search__bar{gap:var(--space-sm);display:flex}.chat-user-search__bar .filter-bar__input{flex:1;min-width:0}.chat-user-search__results{margin-top:var(--space-sm);flex-direction:column;display:flex}.chat-user-search__item{justify-content:space-between;align-items:center;gap:var(--space-sm);padding:var(--space-sm);border:none;border-bottom:1px solid var(--border-light);color:var(--text);cursor:pointer;text-align:left;font-family:var(--font);background:0 0;width:100%;transition:background .15s;display:flex}.chat-user-search__item:hover{background:var(--surface-alt)}.chat-user-search__item:last-child{border-bottom:none}.chat-user-search__name{font-size:14px;font-weight:500}@media (width<=767px){.chat-layout{height:calc(100dvh - 104px)}.chat-thread{width:100%}}.chat-widget{position:relative}.chat-widget__toggle{background:var(--accent);border-radius:var(--radius-sm);color:#fff;cursor:pointer;border:none;justify-content:center;align-items:center;gap:6px;height:34px;padding:0 14px;font-size:13px;font-weight:600;transition:background .15s,transform .1s;display:flex;position:relative}.chat-widget__toggle:hover{background:#e65c00}.chat-widget__toggle:active{transform:scale(.97)}.chat-widget__toggle--flash{animation:.6s ease-in-out 3 chat-flash}@keyframes chat-flash{0%,to{background:var(--accent);transform:scale(1)}50%{background:#f30;transform:scale(1.08)}}.chat-widget__badge{background:var(--red,#e74c3c);color:#fff;pointer-events:none;border-radius:999px;justify-content:center;align-items:center;min-width:18px;height:18px;padding:0 5px;font-size:10px;font-weight:700;line-height:1;animation:1.5s ease-in-out infinite chat-badge-pulse;display:inline-flex;position:absolute;top:-6px;right:-6px}@keyframes chat-badge-pulse{0%,to{transform:scale(1)}50%{transform:scale(1.25)}}.chat-widget__panel{background:var(--surface);border:1px solid var(--border);border-radius:0 0 var(--radius-lg) var(--radius-lg);z-index:200;flex-direction:column;width:380px;max-height:70vh;margin-top:8px;display:flex;position:absolute;top:100%;right:0;overflow:hidden;box-shadow:0 8px 32px #0006}.chat-widget__panel-header{align-items:center;gap:var(--space-sm);padding:var(--space-sm) var(--space-md);border-bottom:1px solid var(--border);flex-shrink:0;display:flex}.chat-widget__panel-title{flex:1;font-size:16px;font-weight:700}.chat-widget__conv-list{flex:1;overflow-y:auto}.chat-widget__messages{padding:var(--space-sm) var(--space-md);gap:var(--space-sm);flex-direction:column;flex:1;display:flex;overflow-y:auto}.chat-widget__panel .chat-input{padding:var(--space-xs) var(--space-sm)}.chat-widget__panel .chat-empty{padding:var(--space-lg)}.chat-widget__panel .chat-bubble{max-width:80%}@media (width<=768px){.chat-widget__panel{border-radius:0;width:100%;max-height:calc(100vh - 104px);margin-top:0;position:fixed;top:48px;left:0;right:0}}@media (width<=480px){.landing__hero h1{font-size:32px}.landing__hero p{font-size:16px}.help-section__title{padding:var(--space-sm) var(--space-md);font-size:15px}.help-section__content{padding:0 var(--space-md)}.help-section--open .help-section__content{padding:0 var(--space-md) var(--space-md)}.help-steps li{margin-left:12px;padding-left:32px}}.admin-stats-grid{gap:var(--space-md);grid-template-columns:repeat(auto-fill,minmax(180px,1fr));display:grid}.admin-section-title{margin-bottom:var(--space-md);font-size:16px;font-weight:700}.admin-table-wrap{border:1px solid var(--border);border-radius:var(--radius-lg);background:var(--surface);overflow-x:auto}.admin-table{border-collapse:collapse;white-space:nowrap;width:100%;font-size:14px}.admin-table thead{background:var(--surface-alt);border-bottom:1px solid var(--border)}.admin-table th{text-align:left;padding:var(--space-sm) var(--space-md);color:var(--text-muted);text-transform:uppercase;letter-spacing:.5px;font-size:12px;font-weight:600}.admin-table td{padding:var(--space-sm) var(--space-md);border-bottom:1px solid var(--border-light);color:var(--text)}.admin-table tbody tr:nth-child(2n){background:var(--surface-alt)}.admin-table tbody tr:nth-child(odd){background:var(--surface)}.admin-table tbody tr:hover{background:var(--surface-elevated)}.admin-table tbody tr:last-child td{border-bottom:none}.admin-table a{color:var(--accent);font-weight:500;text-decoration:none}.admin-table a:hover{text-decoration:underline}.admin-table__sortable{cursor:pointer;-webkit-user-select:none;user-select:none;transition:color .15s}.admin-table__sortable:hover{color:var(--text)}.admin-table__sort-arrow{font-size:11px}.admin-pagination{justify-content:center;align-items:center;gap:var(--space-md);padding:var(--space-md) 0;display:flex}.admin-pagination__info{color:var(--text-muted);font-size:14px}.badge--tier-free{background:var(--surface-elevated);color:var(--text-muted)}.badge--tier-mid{background:var(--amber-bg);color:var(--amber)}.badge--tier-premium{color:#a855f7;background:#a855f726}.badge--admin{color:var(--red);background:#ef444426}.admin-success-message{background:var(--green-bg);color:var(--green);padding:var(--space-sm) var(--space-md);border-radius:var(--radius);margin-bottom:var(--space-md);font-size:14px}.admin-status-summary{gap:var(--space-md);flex-wrap:wrap;align-items:center;display:flex}.admin-status-summary__item{align-items:center;gap:var(--space-xs);display:inline-flex}.admin-status-summary__count{color:var(--text);font-size:14px;font-weight:700}@media (width<=640px){.admin-stats-grid{grid-template-columns:repeat(2,1fr)}.admin-table{font-size:13px}.admin-table th,.admin-table td{padding:var(--space-xs) var(--space-sm)}}
