/* OnlyTalents discovery theme — dark marketplace aesthetic */
:root {
    --ot-bg: #0a0e17;
    --ot-surface: #121826;
    --ot-surface-2: #1a2236;
    --ot-border: rgba(255, 255, 255, 0.08);
    --ot-text: #f4f7fb;
    --ot-muted: #9aa6bd;
    --ot-accent: #7c5cff;
    --ot-accent-2: #2dd4bf;
    --ot-radius: 16px;
    --ot-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.ot-body {
    background: radial-gradient(1200px 600px at 10% -10%, rgba(124, 92, 255, 0.18), transparent 60%),
                radial-gradient(900px 500px at 90% 0%, rgba(45, 212, 191, 0.12), transparent 55%),
                var(--ot-bg);
    color: var(--ot-text);
    min-height: 100vh;
}

.ot-main { padding-bottom: 48px; }

.ot-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(10, 14, 23, 0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--ot-border);
}

.ot-header__inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    flex-wrap: wrap;
}

.ot-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--ot-text);
    font-weight: 800;
}

.ot-brand__mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--ot-accent), var(--ot-accent-2));
    color: #fff;
    font-size: 0.8rem;
}

.ot-header__search {
    flex: 1;
    min-width: 180px;
    display: flex;
    background: var(--ot-surface);
    border: 1px solid var(--ot-border);
    border-radius: 999px;
    overflow: hidden;
}

.ot-header__search input {
    flex: 1;
    border: 0;
    background: transparent;
    color: var(--ot-text);
    padding: 10px 14px;
}

.ot-header__search button {
    border: 0;
    background: transparent;
    color: var(--ot-muted);
    padding: 0 14px;
    cursor: pointer;
}

.ot-nav {
    display: none;
    gap: 8px;
}

.ot-nav a {
    color: var(--ot-muted);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 999px;
}

.ot-nav a.active,
.ot-nav a:hover {
    color: var(--ot-text);
    background: var(--ot-surface);
}

.ot-header__auth { display: flex; gap: 8px; margin-left: auto; }

.ot-nav-toggle {
    display: inline-flex;
    border: 1px solid var(--ot-border);
    background: var(--ot-surface);
    color: var(--ot-text);
    border-radius: 10px;
    padding: 8px 12px;
}

.ot-mobile-nav {
    display: grid;
    gap: 4px;
    padding: 8px 16px 16px;
    border-bottom: 1px solid var(--ot-border);
}

.ot-mobile-nav a {
    color: var(--ot-text);
    text-decoration: none;
    padding: 10px 0;
}

@media (min-width: 900px) {
    .ot-nav { display: flex; }
    .ot-nav-toggle, .ot-mobile-nav { display: none !important; }
}

.ot-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 999px;
    padding: 10px 16px;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    font-weight: 600;
}

.ot-btn--primary {
    background: linear-gradient(135deg, var(--ot-accent), #5b8dff);
    color: #fff;
}

.ot-btn--ghost {
    background: transparent;
    border-color: var(--ot-border);
    color: var(--ot-text);
}

.ot-btn--sm { padding: 8px 12px; font-size: 0.85rem; }

.ot-hero {
    padding: 48px 0 32px;
}

.ot-eyebrow {
    color: var(--ot-accent-2);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.ot-hero__title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1.05;
    margin: 8px 0 12px;
}

.ot-hero__sub {
    color: var(--ot-muted);
    max-width: 680px;
    font-size: 1.05rem;
}

.ot-hero__search {
    margin-top: 24px;
    display: flex;
    gap: 8px;
    max-width: 560px;
}

.ot-hero__search input {
    flex: 1;
    border-radius: 999px;
    border: 1px solid var(--ot-border);
    background: var(--ot-surface);
    color: var(--ot-text);
    padding: 12px 16px;
}

.ot-section { padding: 28px 0; }
.ot-section__head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 16px;
}

.ot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}

.ot-talent-card {
    background: var(--ot-surface);
    border: 1px solid var(--ot-border);
    border-radius: var(--ot-radius);
    overflow: hidden;
    box-shadow: var(--ot-shadow);
    transition: transform .15s ease, border-color .15s ease;
}

.ot-talent-card:hover { transform: translateY(-2px); border-color: rgba(124, 92, 255, 0.45); }
.ot-talent-card__link { color: inherit; text-decoration: none; display: block; }
.ot-talent-card__media { position: relative; aspect-ratio: 4/3; background: var(--ot-surface-2); }
.ot-talent-card__photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.ot-talent-card__photo--placeholder {
    display: grid;
    place-items: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--ot-muted);
}
.ot-talent-card__body { padding: 14px; }
.ot-talent-card__head { display: flex; align-items: center; gap: 8px; }
.ot-talent-card__name { margin: 0; font-size: 1rem; }
.ot-talent-card__meta { color: var(--ot-muted); font-size: 0.85rem; margin: 6px 0; }
.ot-talent-card__cta { width: 100%; margin-top: 10px; }

.ot-online {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--ot-surface);
}
.ot-online--on { background: #22c55e; }
.ot-online--recent { background: #f59e0b; }
.ot-online--off { background: #64748b; }

.ot-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 999px;
    background: var(--ot-surface-2);
}
.ot-badge--verified { color: #7dd3fc; }
.ot-badge--featured { color: #fbbf24; }

.ot-cat-grid, .ot-loc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}
.ot-cat-grid--large, .ot-loc-grid--large {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.ot-cat-card, .ot-loc-card {
    display: block;
    padding: 16px;
    border-radius: 14px;
    background: var(--ot-surface);
    border: 1px solid var(--ot-border);
    text-decoration: none;
    color: inherit;
}
.ot-cat-card:hover, .ot-loc-card:hover { border-color: rgba(45, 212, 191, 0.5); }

.ot-video-strip {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
}
.ot-video-strip--grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    overflow: visible;
}
.ot-video-chip, .ot-video-card {
    min-width: 180px;
    background: var(--ot-surface);
    border: 1px solid var(--ot-border);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}
.ot-video-chip img, .ot-video-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.ot-video-card__body { padding: 10px; }

.ot-discover-layout {
    display: grid;
    gap: 20px;
    padding-bottom: 40px;
}
@media (min-width: 960px) {
    .ot-discover-layout { grid-template-columns: 280px 1fr; align-items: start; }
}

.ot-filters {
    background: var(--ot-surface);
    border: 1px solid var(--ot-border);
    border-radius: var(--ot-radius);
    padding: 16px;
    position: sticky;
    top: 84px;
}
.ot-filters fieldset {
    border: 0;
    margin: 0 0 14px;
    padding: 0;
}
.ot-filters legend {
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 8px;
    color: var(--ot-muted);
    text-transform: uppercase;
}
.ot-filters select,
.ot-filters input[type="text"],
.ot-filters input[type="number"] {
    width: 100%;
    margin-bottom: 8px;
    border-radius: 10px;
    border: 1px solid var(--ot-border);
    background: var(--ot-surface-2);
    color: var(--ot-text);
    padding: 8px 10px;
}
.ot-check { display: flex; gap: 8px; align-items: center; margin-bottom: 6px; font-size: 0.9rem; }
.ot-range { display: flex; gap: 8px; align-items: center; }
.ot-filters__actions { display: flex; gap: 8px; flex-wrap: wrap; }

.ot-page-head { padding: 28px 0 12px; }
.ot-empty, .ot-search-banner {
    padding: 24px;
    border-radius: 14px;
    background: var(--ot-surface);
    border: 1px solid var(--ot-border);
}
.ot-pagination { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.ot-pagination .is-active { border-color: var(--ot-accent); }

.ot-profile-hero { padding: 24px 0; }
.ot-profile-hero__inner {
    display: grid;
    gap: 20px;
    background: var(--ot-surface);
    border: 1px solid var(--ot-border);
    border-radius: 20px;
    padding: 20px;
}
@media (min-width: 768px) {
    .ot-profile-hero__inner { grid-template-columns: 200px 1fr; }
}
.ot-profile-hero__photo {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 16px;
}
.ot-profile-stats { display: flex; flex-wrap: wrap; gap: 12px; margin: 12px 0; color: var(--ot-muted); }
.ot-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0; }
.ot-chip {
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--ot-surface-2);
    font-size: 0.8rem;
}

.ot-form-wrap { max-width: 720px; padding-bottom: 40px; }
.ot-form label { display: block; margin-bottom: 14px; }
.ot-form select, .ot-form input[type="text"], .ot-form input[type="number"] {
    width: 100%;
    margin-top: 6px;
    border-radius: 10px;
    border: 1px solid var(--ot-border);
    background: var(--ot-surface);
    color: var(--ot-text);
    padding: 10px 12px;
}
.ot-form-row { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }

.ot-footer {
    border-top: 1px solid var(--ot-border);
    padding: 24px 0;
    margin-top: 24px;
    color: var(--ot-muted);
}
.ot-footer__inner {
    display: grid;
    gap: 16px;
}
@media (min-width: 768px) {
    .ot-footer__inner { grid-template-columns: 1fr auto auto; align-items: start; }
}
.ot-footer__links, .ot-footer__lang { display: flex; gap: 12px; flex-wrap: wrap; }
.ot-footer a { color: var(--ot-muted); text-decoration: none; }
.ot-link { color: var(--ot-accent-2); text-decoration: none; }
