:root {
    --odish-red: #e50914;
    --odish-red-light: #ff3341;
    --odish-black: #111111;
    --odish-text: #1c1c1c;
    --odish-muted: #707070;
    --odish-bg: #f7f8fa;
    --odish-card: #ffffff;
    --odish-border: #ececec;
    --odish-shadow: 0 20px 60px rgba(0, 0, 0, .06);
    --radius-lg: 32px;
    --radius-md: 20px;
    --transition: .3s ease;
    --navbar-height: 90px;
}

main {
    padding-top: var(--navbar-height);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, sans-serif;
    background: white;
    color: var(--odish-text);
    overflow-x: hidden;
}

/* =========================
   GLOBAL
========================= */
img {
    object-fit: cover;
}

.section-padding {
    padding: 90px 0;
}

.section-mini-title {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--odish-red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .35em;
}

.section-title {
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1;
    font-weight: 900;
    margin-bottom: 24px;
}

.section-title span {
    color: var(--odish-red);
}

.section-text {
    color: var(--odish-muted);
    font-size: 18px;
    line-height: 1.8;
}

.bg-light-soft {
    background: var(--odish-bg);
}

.layout-flash {
    position: fixed;
    top: calc(var(--navbar-height) + 16px);
    left: 50%;
    width: min(92vw, 560px);
    transform: translateX(-50%);
    z-index: 10050;
}

.layout-flash:empty {
    display: none;
}

.layout-flash .alert {
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
}

/* =========================
   NAVBAR
========================= */

.premium-navbar {
    padding: 12px 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, .04);
    transition: var(--transition);
    z-index: 9999;
}

.premium-navbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
}

.navbar-brand img {
    height: 66px;
    width: auto;
    object-fit: contain;
    display: block;
}

.odish-brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--odish-text);
    text-decoration: none;
}

.odish-brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    overflow: hidden;
    flex: 0 0 42px;
}

.navbar-brand .odish-brand-icon img,
.mobile-app-header__brand .odish-brand-icon img {
    width: 74px;
    height: 59px;
    max-width: none;
    object-fit: cover;
    object-position: center;
    display: block;
}

.odish-brand-wordmark {
    display: inline-block;
    color: #111111;
    font-size: 27px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    white-space: nowrap;
}

.odish-brand-wordmark span {
    color: var(--odish-red);
    font-weight: 500;
}

.odish-brand-wordmark b {
    color: #111111;
    font-weight: 400;
}

.nav-link {
    color: var(--odish-text);
    font-weight: 600;
    margin: 0 12px;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--odish-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 0;
    height: 3px;
    border-radius: 999px;
    background: var(--odish-red);
    transform: translateX(-50%);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 24px;
}

.navbar-toggler {
    border: 0;
    padding: 6px 8px;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.navbar-collapse {
    z-index: 10000;
}

.social-link {
    color: var(--odish-text);
    font-size: 18px;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--odish-red);
}

/* =========================
   BUTTONS
========================= */

.btn-primary-premium {
    background: var(--odish-red);
    color: white;
    border: none;
    border-radius: 16px;
    padding: 16px 30px;
    font-weight: 700;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-primary-premium:hover {
    background: #c70811;
    transform: translateY(-2px);
    color: white;
}

.btn-primary-premium.disabled,
.btn-secondary-premium.disabled {
    background: #eef1f5;
    border: 1px solid #d8dee8;
    color: var(--odish-text);
    opacity: 1;
    cursor: not-allowed;
    pointer-events: auto;
    transform: none;
}

.btn-primary-premium.disabled:hover,
.btn-secondary-premium.disabled:hover {
    background: #eef1f5;
    border-color: #d8dee8;
    color: var(--odish-text);
    transform: none;
}

.home-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.home-card-link:hover {
    color: inherit;
    text-decoration: none;
}

.btn-secondary-premium {
    border: 1px solid var(--odish-border);
    background: white;
    color: var(--odish-text);
    border-radius: 16px;
    padding: 16px 30px;
    font-weight: 700;
    transition: var(--transition);
    text-decoration: none;
}

.btn-secondary-premium:hover {
    border-color: var(--odish-red);
    color: var(--odish-red);
}

.btn-login {
    background: var(--odish-red);
    color: white;
    border-radius: 14px;
    padding: 12px 22px;
    font-weight: 700;
    text-decoration: none;
}

.btn-login:hover {
    background: #c70811;
    color: white;
}

.btn-account {
    background: var(--odish-black);
    color: #ffffff;
    border: 1px solid var(--odish-black);
    border-radius: 14px;
    padding: 12px 22px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 10px 24px rgba(17, 17, 17, .12);
}

.btn-account:hover {
    background: var(--odish-red);
    border-color: var(--odish-red);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(229, 9, 20, .22);
}

/* =========================
   HERO
========================= */

.hero-section {
    position: relative;
    padding-top: calc(var(--navbar-height) + 50px);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -300px;
    right: -300px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(229, 9, 20, .08), transparent 70%);
    z-index: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff5f5;
    color: var(--odish-red);
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 600;
    margin-bottom: 30px;
}

.hero-section h1 {
    font-size: clamp(54px, 7vw, 92px);
    line-height: .92;
    font-weight: 900;
    margin-bottom: 28px;
    letter-spacing: -3px;
}

.hero-section h1 span {
    color: var(--odish-red);
}

.hero-section p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--odish-muted);
    max-width: 580px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 42px;
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 30px;
}

.hero-stats strong {
    display: block;
    font-size: 42px;
    font-weight: 900;
}

.hero-stats span {
    color: var(--odish-muted);
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    width: 100%;
    height: 760px;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, .12);
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 18px;
    padding: 18px 22px;
    box-shadow: var(--odish-shadow);
    font-weight: 700;
    z-index: 2;
}

.floating-card i {
    color: var(--odish-red);
    margin-right: 8px;
}

.card-1 {
    top: 40px;
    left: -40px;
}

.card-2 {
    bottom: 40px;
    right: -40px;
}

.card-2 i {
    color: #0d6efd
}

.artist-verified-badge {
    right: -18px;
    bottom: 22px;
    color: var(--odish-text);
}

.hero-image-wrapper .artist-verified-badge {
    right: -40px;
    bottom: 40px;
}

/* =========================
   HOME HERO PREMIUM
========================= */

.home-hero-premium {
    position: relative;
    padding: calc(var(--navbar-height) + 64px) 0 56px;
    background:
        radial-gradient(circle at 4% 58%, rgba(229, 9, 20, .08), transparent 22%),
        radial-gradient(circle at 93% 18%, rgba(229, 9, 20, .08), transparent 18%),
        linear-gradient(135deg, #ffffff 0%, #fff8f8 54%, #ffffff 100%);
    overflow: hidden;
}

.home-hero-premium::before,
.home-hero-premium::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

.home-hero-premium::before {
    left: 18px;
    top: 55%;
    width: 92px;
    height: 92px;
    background-image: radial-gradient(circle, rgba(229, 9, 20, .22) 0 4px, transparent 5px);
    background-size: 21px 21px;
}

.home-hero-premium::after {
    right: 20px;
    top: 138px;
    width: 118px;
    height: 118px;
    background-image: radial-gradient(circle, rgba(229, 9, 20, .18) 0 4px, transparent 5px);
    background-size: 24px 24px;
}

.home-hero-premium__shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    gap: 56px;
    align-items: center;
}

.home-hero-premium__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: #fff0f1;
    color: var(--odish-red);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.home-hero-premium__title {
    color: #111111;
    font-size: clamp(58px, 6.2vw, 88px);
    line-height: .98;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 30px;
}

.home-hero-premium__title span {
    display: block;
    color: var(--odish-red);
}

.home-hero-premium__text {
    max-width: 620px;
    color: var(--odish-muted);
    font-size: 20px;
    line-height: 1.65;
    margin-bottom: 38px;
}

.home-hero-premium__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 26px;
}

.home-hero-premium__primary {
    min-height: 58px;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(229, 9, 20, .22);
}

.home-hero-premium__secondary {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 28px;
    border: 1px solid rgba(17, 17, 17, .1);
    border-radius: 14px;
    background: #ffffff;
    color: #111111;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 14px 34px rgba(17, 17, 17, .04);
    transition: transform .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.home-hero-premium__secondary:hover,
.home-hero-premium__secondary:focus-visible {
    color: var(--odish-red);
    border-color: rgba(229, 9, 20, .24);
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(17, 17, 17, .08);
}

.home-hero-premium__primary:focus-visible,
.home-hero-premium__secondary:focus-visible,
.home-hero-premium__new-badge:focus-visible,
.home-hero-premium__stat:focus-visible {
    outline: 3px solid rgba(229, 9, 20, .28);
    outline-offset: 4px;
}

.home-hero-premium__trust {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--odish-muted);
    font-weight: 600;
    margin: 0;
}

.home-hero-premium__trust i {
    color: var(--odish-red);
}

.home-hero-premium__visual {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 230px;
    gap: 18px;
    align-items: center;
}

.home-hero-premium__main-card {
    position: relative;
    min-height: 640px;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 34px 90px rgba(17, 17, 17, .16);
}

.home-hero-premium__main-image {
    width: 100%;
    height: 100%;
    min-height: 640px;
    object-fit: cover;
    display: block;
}

.home-hero-premium__main-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 17, 17, .05), rgba(17, 17, 17, .12));
    pointer-events: none;
}

.home-hero-premium__new-badge,
.home-hero-premium__verified {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #111111;
    border-radius: 14px;
    box-shadow: 0 18px 44px rgba(17, 17, 17, .18);
    font-weight: 900;
}

.home-hero-premium__new-badge {
    top: 24px;
    left: 24px;
    min-height: 46px;
    padding: 0 18px;
    text-decoration: none;
    transition: transform .2s ease, color .2s ease;
}

.home-hero-premium__new-badge:hover {
    color: var(--odish-red);
    transform: translateY(-2px);
}

.home-hero-premium__new-badge i {
    color: var(--odish-red);
}

.home-hero-premium__verified {
    right: -18px;
    bottom: 34px;
    min-height: 54px;
    padding: 0 22px;
}

.home-hero-premium__verified .user-badge {
    min-width: 28px;
    width: 28px;
    height: 28px;
    min-height: 28px;
    padding: 0;
    justify-content: center;
    margin: 0;
    flex-shrink: 0;
}

.home-hero-premium__verified .user-badge i {
    font-size: 11px;
}

.home-hero-premium__side-images {
    display: grid;
    gap: 18px;
}

.home-hero-premium__side-images img {
    width: 100%;
    height: 278px;
    object-fit: cover;
    border-radius: 26px;
    box-shadow: 0 24px 64px rgba(17, 17, 17, .12);
}

.home-hero-premium__stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 52px;
    padding: 34px 44px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(17, 17, 17, .08);
    border-radius: 26px;
    box-shadow: 0 28px 80px rgba(17, 17, 17, .08);
    backdrop-filter: blur(10px);
}

.home-hero-premium__stat {
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: 116px;
    padding: 0 34px;
    color: inherit;
    text-decoration: none;
    transition: transform .2s ease;
}

.home-hero-premium__stat + .home-hero-premium__stat {
    border-left: 1px solid rgba(17, 17, 17, .08);
}

.home-hero-premium__stat:hover,
.home-hero-premium__stat:focus-visible {
    color: inherit;
    text-decoration: none;
    transform: translateY(-3px);
}

.home-hero-premium__stat-icon {
    width: 78px;
    height: 78px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fff2f3, #ffffff);
    color: var(--odish-red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 78px;
    font-size: 29px;
    box-shadow: inset 0 0 0 1px rgba(229, 9, 20, .08), 0 14px 32px rgba(229, 9, 20, .08);
}

.home-hero-premium__stat strong,
.home-hero-premium__stat b,
.home-hero-premium__stat small {
    display: block;
}

.home-hero-premium__stat strong {
    color: var(--odish-red);
    font-size: 40px;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 8px;
}

.home-hero-premium__stat b {
    color: #111111;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 6px;
}

.home-hero-premium__stat small {
    color: var(--odish-muted);
    font-size: 15px;
}

@media (prefers-reduced-motion: no-preference) {
    .home-hero-premium__new-badge,
    .home-hero-premium__verified {
        animation: homeHeroBadgeFloat 4s ease-in-out infinite;
    }

    .home-hero-premium__verified {
        animation-delay: .7s;
    }
}

@keyframes homeHeroBadgeFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* =========================
   PREMIUM CARD
========================= */

.premium-card {
    background: var(--odish-card);
    border: 1px solid var(--odish-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--odish-shadow);
    transition: var(--transition);
    overflow: hidden;
}

.premium-card:hover {
    transform: translateY(-6px);
}

/* =========================
   HOW IT WORKS
========================= */

.step-card {
    position: relative;
    padding: 48px 36px;
    min-height: 360px;

    background: var(--odish-card);
    border: 1px solid var(--odish-border);
    border-radius: var(--radius-lg);

    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);

    transition: all 0.35s ease;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.10);
    border-color: rgba(229, 9, 20, 0.25);
}

/* NUMBER BACKGROUND (premium effect) */
.step-number {
    position: absolute;
    top: 20px;
    right: 25px;

    font-size: 110px;
    font-weight: 900;

    color: var(--odish-red);
    opacity: 0.06;

    line-height: 1;
}

/* ICON STYLE PREMIUM */
.step-card i {
    font-size: 44px;
    color: var(--odish-red);

    background: #fff5f5;
    padding: 16px;
    border-radius: 16px;

    margin-bottom: 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* TITLE */
.step-card h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

/* TEXT */
.step-card p {
    color: var(--odish-muted);
    line-height: 1.7;
    font-size: 16px;
}

/* PROGRESSION LINE (VERY PREMIUM TOUCH) */
.step-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: linear-gradient(90deg, var(--odish-red), var(--odish-red-light));
    transition: width 0.4s ease;
}

.step-card:hover::after {
    width: 100%;
}

/* =========================
   ARTISTS
========================= */

.artist-card img {
    height: 340px;
    width: 100%;
    object-fit: cover;
}

.artist-info {
    padding: 24px;
}

.artist-info h4 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
}

.artist-info p {
    color: var(--odish-muted);
    margin: 0;
}

/* =========================
   CASTINGS
========================= */

.casting-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.casting-content {
    padding: 26px;
}

.casting-badge {
    display: inline-block;
    background: #fff5f5;
    color: var(--odish-red);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.casting-content h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}

.casting-content p {
    color: var(--odish-muted);
}

/* =========================
   HOME OPPORTUNITIES
========================= */

.odish-opportunities-section {
    position: relative;
    background:
        radial-gradient(circle at 47% 17%, rgba(229, 9, 20, .08), transparent 22%),
        radial-gradient(circle at 6% 38%, rgba(229, 9, 20, .05), transparent 18%),
        linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
    scroll-margin-top: calc(var(--navbar-height) + 24px);
    overflow: hidden;
}

.odish-opportunities-section::before,
.odish-opportunities-section::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

.odish-opportunities-section::before {
    left: 44px;
    top: 265px;
    width: 58px;
    height: 58px;
    background-image: radial-gradient(circle, rgba(229, 9, 20, .22) 0 4px, transparent 5px);
    background-size: 20px 20px;
}

.odish-opportunities-section::after {
    left: 40%;
    top: 185px;
    width: 18px;
    height: 18px;
    background: var(--odish-red);
    opacity: .18;
    clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
}

.odish-opportunities-header {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(320px, .78fr) minmax(420px, 1fr);
    gap: 42px;
    align-items: start;
    margin-bottom: 48px;
}

.odish-opportunities-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: var(--odish-red);
    font-weight: 900;
    letter-spacing: .04em;
    margin-bottom: 22px;
}

.odish-opportunities-eyebrow span {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: #fff0f1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 36px rgba(229, 9, 20, .12);
}

.odish-opportunities-heading h2 {
    color: #050505;
    font-size: clamp(46px, 5.4vw, 74px);
    line-height: .95;
    font-weight: 900;
    margin-bottom: 22px;
    letter-spacing: -1px;
}

.odish-opportunities-heading h2 span {
    color: var(--odish-red);
}

.odish-opportunities-heading p {
    max-width: 520px;
    color: var(--odish-muted);
    font-size: 19px;
    line-height: 1.55;
    margin: 0;
}

.odish-opportunities-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 52px;
    padding-top: 50px;
}

.odish-opportunities-all-link {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0 28px;
    border: 1px solid rgba(17, 17, 17, .09);
    border-radius: 16px;
    background: #ffffff;
    color: #111111;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 16px 42px rgba(17, 17, 17, .05);
    transition: transform .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.odish-opportunities-all-link i {
    color: var(--odish-red);
}

.odish-opportunities-all-link:hover,
.odish-opportunities-all-link:focus-visible {
    color: var(--odish-red);
    border-color: rgba(229, 9, 20, .24);
    transform: translateY(-2px);
    box-shadow: 0 20px 50px rgba(17, 17, 17, .08);
}

.odish-opportunities-trust {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.odish-opportunities-trust div {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 68px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, .84);
    border: 1px solid rgba(17, 17, 17, .08);
    border-radius: 16px;
    box-shadow: 0 14px 38px rgba(17, 17, 17, .04);
}

.odish-opportunities-trust i {
    color: var(--odish-red);
    font-size: 23px;
}

.odish-opportunities-trust span,
.odish-opportunities-trust strong {
    display: block;
}

.odish-opportunities-trust span {
    color: var(--odish-muted);
    font-size: 13px;
    line-height: 1.25;
}

.odish-opportunities-trust strong {
    color: #111111;
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 3px;
}

.odish-opportunities-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
}

.odish-opportunity-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, .06);
    border-radius: 28px;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 26px 70px rgba(17, 17, 17, .08);
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.odish-opportunity-card:hover,
.odish-opportunity-card:focus-visible {
    color: inherit;
    text-decoration: none;
    transform: translateY(-4px);
    border-color: rgba(229, 9, 20, .16);
    box-shadow: 0 32px 80px rgba(17, 17, 17, .12);
}

.odish-opportunity-card:focus-visible,
.odish-opportunities-all-link:focus-visible {
    outline: 3px solid rgba(229, 9, 20, .28);
    outline-offset: 4px;
}

.odish-opportunity-card__media {
    position: relative;
    height: 282px;
    overflow: hidden;
}

.odish-opportunity-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .2s ease;
}

.odish-opportunity-card:hover .odish-opportunity-card__media img,
.odish-opportunity-card:focus-visible .odish-opportunity-card__media img {
    transform: scale(1.025);
}

.odish-opportunity-card__badge {
    position: absolute;
    top: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #d83947, #a91f2b);
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 14px 32px rgba(17, 17, 17, .16);
}

.odish-opportunity-card__favorite {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .78);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(17, 17, 17, .18);
    backdrop-filter: blur(8px);
    font-size: 22px;
}

.odish-opportunity-card__content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 32px;
}

.odish-opportunity-card__title-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: start;
    margin-bottom: 18px;
}

.odish-opportunity-card__title-row h3 {
    color: #060606;
    font-size: 27px;
    line-height: 1.15;
    font-weight: 900;
    margin: 0;
}

.odish-opportunity-card__brand,
.odish-opportunity-card__type {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #111111;
    color: var(--odish-red);
    font-size: 30px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(17, 17, 17, .12);
}

.odish-opportunity-card__type {
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, .08);
    color: var(--odish-red);
    font-size: 20px;
}

.odish-opportunity-card__content > p {
    color: var(--odish-muted);
    font-size: 16px;
    line-height: 1.65;
    margin: 0 0 26px;
}

.odish-opportunity-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: var(--odish-muted);
    margin-top: auto;
    margin-bottom: 28px;
}

.odish-opportunity-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 32px;
    font-weight: 600;
}

.odish-opportunity-card__meta i {
    color: #656b75;
}

.odish-opportunity-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 62px;
    padding: 12px 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fff5f5, #fffafb);
}

.odish-opportunity-card__candidates,
.odish-opportunity-card__details {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.odish-opportunity-card__candidates {
    color: #4f5661;
}

.odish-opportunity-card__candidates i {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #ffffff;
    color: var(--odish-red);
}

.odish-opportunity-card__details {
    color: var(--odish-red);
    white-space: nowrap;
}

/* =========================
   PWA PROMO
========================= */

.pwa-promo-section {
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
    scroll-margin-top: calc(var(--navbar-height) + 24px);
}

.pwa-promo-shell {
    position: relative;
    background:
        radial-gradient(circle at 60% 48%, rgba(229, 9, 20, .16), transparent 22%),
        linear-gradient(135deg, #ffffff 0%, #fffafa 52%, #ffffff 100%);
    border: 1px solid rgba(17, 17, 17, .08);
    border-radius: 24px;
    box-shadow: 0 24px 80px rgba(17, 17, 17, .08);
    padding: 44px 42px 36px;
    overflow: hidden;
}

.pwa-promo-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(280px, .78fr) minmax(230px, .68fr);
    align-items: center;
    gap: 34px;
}

.pwa-mobile-preview-bar,
.pwa-mobile-bottom-nav {
    display: none;
}

.pwa-promo-badge {
    margin-bottom: 20px;
    padding: 9px 16px;
    font-size: 14px;
}

.pwa-promo-title {
    font-size: clamp(36px, 3.6vw, 52px);
    line-height: 1.08;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.pwa-promo-title span {
    color: var(--odish-red);
}

.pwa-promo-lead {
    color: var(--odish-muted);
    font-size: 18px;
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 28px;
}

.pwa-benefits {
    display: grid;
    gap: 24px;
    margin-bottom: 32px;
}

.pwa-benefit {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.pwa-benefit-icon {
    width: 58px;
    height: 58px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fff5f5, #ffffff);
    color: var(--odish-red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 58px;
    box-shadow: 0 14px 30px rgba(229, 9, 20, .08);
}

.pwa-benefit h3 {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 6px;
}

.pwa-benefit p,
.pwa-install-help {
    color: var(--odish-muted);
    line-height: 1.6;
    margin: 0;
}

.pwa-promo-install-btn {
    width: min(100%, 420px);
    min-height: 56px;
    border-radius: 10px;
    font-size: 16px;
    box-shadow: 0 14px 30px rgba(229, 9, 20, .22);
}

.pwa-promo-install-btn:hover {
    transform: translateY(-2px) scale(1.02);
}

.pwa-install-help {
    margin-top: 16px;
    font-size: 14px;
    text-align: center;
    width: min(100%, 420px);
}

.pwa-device-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.pwa-phone-halo {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(229, 9, 20, .14);
    transform: translateX(18px);
}

.pwa-phone {
    position: relative;
    z-index: 1;
    width: 340px;
    border-radius: 46px;
    padding: 7px;
    background: linear-gradient(145deg, #1a1a1a, #020202 55%, #3a3a3a);
    box-shadow: 0 28px 68px rgba(17, 17, 17, .24);
}

.pwa-phone-frame {
    position: relative;
    min-height: 610px;
    border-radius: 39px;
    background: linear-gradient(180deg, #ffffff, #f8f8f9);
    padding: 22px;
    overflow: hidden;
}

.pwa-phone-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #101010;
    font-size: 13px;
    margin-bottom: 18px;
}

.pwa-phone-status span {
    width: 52px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, #111 42%, transparent 42% 52%, #111 52% 72%, transparent 72% 80%, #111 80%);
}

.pwa-phone-notch {
    position: absolute;
    top: 14px;
    left: 50%;
    width: 88px;
    height: 28px;
    border-radius: 999px;
    background: #050505;
    transform: translateX(-50%);
}

.pwa-app-topbar {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
}

.pwa-app-logo {
    width: 46px;
    height: auto;
    object-fit: contain;
}

.pwa-app-mode {
    background: #f4c400;
    color: #111111;
    border-radius: 999px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 900;
    margin-left: auto;
}

.pwa-app-topbar i {
    color: #111111;
    font-size: 16px;
}

.pwa-app-welcome {
    margin-bottom: 24px;
}

.pwa-app-welcome span,
.pwa-app-welcome strong {
    display: block;
    color: #111111;
    font-size: 20px;
    line-height: 1.25;
}

.pwa-app-welcome strong {
    font-weight: 900;
}

.pwa-app-welcome em {
    color: var(--odish-red);
    font-style: normal;
}

.pwa-app-stack {
    display: grid;
    gap: 10px;
    margin-bottom: 28px;
}

.pwa-app-row {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    border: 1px solid var(--odish-border);
    border-radius: 16px;
    padding: 14px 12px;
    box-shadow: 0 10px 24px rgba(17, 17, 17, .05);
}

.pwa-app-row > span {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #fff5f5;
    color: var(--odish-red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
}

.pwa-app-row div {
    flex: 1;
}

.pwa-app-row strong,
.pwa-app-row b {
    display: block;
}

.pwa-app-row strong {
    font-size: 12px;
}

.pwa-app-row b {
    font-size: 19px;
    font-weight: 800;
}

.pwa-app-row small {
    color: var(--odish-red);
    font-size: 11px;
    font-weight: 800;
}

.pwa-app-opportunity strong {
    display: block;
    font-size: 15px;
    margin-bottom: 12px;
}

.pwa-app-opportunity > div {
    display: flex;
    gap: 12px;
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--odish-border);
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 10px 24px rgba(17, 17, 17, .05);
}

.pwa-app-opportunity img {
    width: 58px;
    height: 58px;
    border-radius: 12px;
}

.pwa-app-opportunity p {
    margin: 0;
    font-size: 12px;
    font-weight: 800;
}

.pwa-app-opportunity span {
    display: block;
    color: var(--odish-muted);
    font-weight: 600;
    margin-top: 5px;
}

.pwa-app-bottom-nav {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 20px;
    display: flex;
    justify-content: space-between;
}

.pwa-app-bottom-nav span {
    width: 28px;
    height: 5px;
    border-radius: 999px;
    background: #dfe2e8;
}

.pwa-app-bottom-nav .active {
    background: var(--odish-red);
}

.pwa-platform-panel {
    align-self: center;
    display: grid;
    gap: 18px;
}

.pwa-platform-label {
    display: block;
    color: #111111;
    font-weight: 900;
    margin-bottom: 4px;
}

.pwa-platform-card,
.pwa-update-card,
.pwa-guide-card {
    background: #ffffff;
    border: 1px solid var(--odish-border);
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(17, 17, 17, .06);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.pwa-platform-card:hover,
.pwa-update-card:hover,
.pwa-guide-card:hover {
    transform: translateY(-4px);
    border-color: rgba(229, 9, 20, .18);
    box-shadow: 0 20px 48px rgba(17, 17, 17, .09);
}

.pwa-platform-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px;
    min-height: 94px;
}

.pwa-platform-card i {
    color: #111111;
    font-size: 36px;
    width: 42px;
    text-align: center;
}

.pwa-platform-card strong,
.pwa-platform-card span,
.pwa-update-card strong,
.pwa-update-card span {
    display: block;
}

.pwa-platform-card strong {
    color: #111111;
    font-size: 17px;
    font-weight: 900;
}

.pwa-platform-card span,
.pwa-update-card span {
    color: var(--odish-muted);
    font-size: 13px;
    line-height: 1.5;
}

.pwa-update-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: linear-gradient(135deg, #fff8f8, #ffffff);
    border-color: rgba(229, 9, 20, .08);
    margin-top: 34px;
    padding: 22px;
}

.pwa-update-card i {
    color: var(--odish-red);
    margin-top: 2px;
}

.pwa-update-card strong {
    color: #111111;
    font-size: 17px;
    font-weight: 900;
    margin-bottom: 8px;
}

.pwa-install-guide {
    position: relative;
    margin-top: 56px;
    border: 1px solid rgba(17, 17, 17, .08);
    border-radius: 16px;
    padding: 30px;
    background: rgba(255, 255, 255, .72);
}

.pwa-install-guide h3 {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    padding: 0 18px;
    color: #111111;
    font-size: 18px;
    font-weight: 900;
    margin: 0;
    white-space: nowrap;
}

.pwa-guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.pwa-guide-card {
    display: flex;
    align-items: center;
    gap: 22px;
    border: 0;
    box-shadow: none;
    background: transparent;
    border-radius: 14px;
    padding: 12px;
}

.pwa-guide-card.is-recommended {
    background: #fff8f8;
}

.pwa-guide-card h4 {
    color: #111111;
    font-size: 17px;
    font-weight: 900;
    margin-bottom: 6px;
}

.pwa-guide-card p {
    color: var(--odish-muted);
    line-height: 1.55;
    margin: 0;
}

.pwa-guide-icon {
    width: 72px;
    height: 72px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fff5f5, #ffffff);
    color: #111111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 72px;
    box-shadow: 0 12px 30px rgba(17, 17, 17, .06);
}

.pwa-guide-icon i {
    font-size: 31px;
}

.pwa-guide-icon-android {
    color: #8cc63f;
    background: linear-gradient(135deg, #f3ffe8, #ffffff);
}

.pwa-guide-icon-red {
    color: var(--odish-red);
}

.odish-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .45s ease, transform .45s ease;
}

.odish-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   CTA
========================= */

.cta-section {
    padding: 0px 0;
}

.cta-box {
    background: linear-gradient(135deg, #111, #1b1b1b);
    border-radius: 40px;
    padding: 100px;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(229, 9, 20, .25), transparent 70%);
    top: -250px;
    right: -200px;
}

.cta-box span {
    display: block;
    color: #ff7a7f;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .3em;
    margin-bottom: 18px;
}

.cta-box h2 {
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1;
    font-weight: 900;
    margin-bottom: 24px;
}

.cta-box p {
    max-width: 700px;
    margin: auto;
    opacity: .8;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* =========================
   FOOTER
========================= */

footer {
    background: #0f0f10;
    padding: 100px 0 50px;
    color: white;
    margin-top: 10px;
}

.footer-logo {
    height: 90px;
    margin-bottom: 24px;
}

footer p {
    color: rgba(255, 255, 255, .7);
    line-height: 1.8;
}

footer h4 {
    margin-bottom: 24px;
    font-weight: 800;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer li {
    margin-bottom: 14px;
}

footer a {
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    transition: var(--transition);
}

footer a:hover {
    color: white;
}

.newsletter-form {
    display: flex;
    background: white;
    border-radius: 16px;
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    border: none;
    padding: 16px;
    outline: none;
}

.newsletter-form button {
    width: 60px;
    border: none;
    background: var(--odish-red);
    color: white;
}

.stat-card {
    flex: 1;
    min-width: 160px;
    padding: 22px 24px;
    border-radius: 20px;

    background: var(--odish-card);
    border: 1px solid var(--odish-border);

    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);

    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(229, 9, 20, 0.06), transparent 60%);
    opacity: 1;
}

.stat-card strong {
    display: block;
    font-size: 34px;
    font-weight: 900;
    color: var(--odish-text);
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.stat-card span {
    display: block;
    margin-top: 6px;
    font-size: 14px;
    color: var(--odish-muted);
    position: relative;
    z-index: 1;
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10);
    border-color: rgba(229, 9, 20, 0.25);
}

.stat-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 20px;
    width: 40px;
    height: 3px;
    background: var(--odish-red);
    border-radius: 999px;
    opacity: 0.9;
}

.section-heading {
    max-width: 800px;
    margin: 0 auto 80px auto;
}

.mini-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--odish-red);

    padding: 8px 14px;
    border-radius: 999px;
    background: #fff5f5;

    margin-bottom: 18px;
}

.section-heading h2 {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--odish-text);
    margin-bottom: 18px;
}

.section-heading h2 span {
    color: var(--odish-red);
    position: relative;
}

.section-heading h2 span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 4px;
    background: rgba(229, 9, 20, 0.2);
    border-radius: 999px;
}

.section-heading p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--odish-muted);
    max-width: 600px;
    margin: 0 auto;
}

.page-ribbon {
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: #0b0b0c;
    padding-top: 130px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* PREMIUM GLOW */
.page-ribbon::before {
    content: "";
    position: absolute;

    top: -250px;
    right: -200px;

    width: 700px;
    height: 700px;

    background:
        radial-gradient(circle,
            rgba(229, 9, 20, 0.10),
            transparent 70%);

    z-index: 0;
}

/* CONTENT */
.ribbon-content {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
    flex-wrap: wrap;
}

/* MINI BADGE */
.ribbon-text .ribbon-mini {
    display: inline-block;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: .3em;

    color: #ff3b4a;

    padding: 10px 16px;
    border-radius: 999px;

    background: rgba(255, 59, 74, 0.08);
}

.ribbon-text h1.ribbon-mini {
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: .3em;
    margin: 0;
}

/* TITLE */
.ribbon-text h1 {
    font-size: clamp(52px, 7vw, 92px);
    line-height: .95;
    font-weight: 900;

    letter-spacing: -3px;

    margin-bottom: 20px;
}

/* DESCRIPTION */
.ribbon-text p {
    max-width: 620px;

    font-size: 18px;
    line-height: 1.8;

    color: var(--odish-muted);
}

/* BREADCRUMB */
.ribbon-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 14px;
    font-weight: 600;
}

.ribbon-breadcrumb a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: .3s ease;
}

.ribbon-breadcrumb {
    position: relative;
    z-index: 5;
}

.ribbon-breadcrumb a {
    display: inline-flex;
    align-items: center;
    width: auto !important;
    min-width: max-content;
    position: relative;
    z-index: 6;
    pointer-events: auto;
}

.ribbon-breadcrumb a:hover {
    color: #ff3b4a;
}

.ribbon-breadcrumb span {
    color: rgba(255, 255, 255, 0.25);
}


.ribbon-breadcrumb .active {
    color: #ffffff;
    font-weight: 800;
}


/* =========================================
   ABOUT IMAGE
========================================= */

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    height: 650px;
    object-fit: cover;

    border-radius: 36px;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .10);

    transition: var(--transition);
}

.about-image:hover {
    transform: translateY(-6px);
}

/* =========================================
   VALUE CARDS
========================================= */

.value-card {
    padding: 42px 32px;
    text-align: center;

    min-height: 320px;

    transition: all .35s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 25px 70px rgba(0, 0, 0, .08);
}

.value-card i {
    width: 78px;
    height: 78px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 22px;

    background: #fff3f4;
    color: var(--odish-red);

    font-size: 30px;

    margin-bottom: 28px;
}

.value-card h3 {
    font-size: 24px;
    font-weight: 800;

    margin-bottom: 16px;
}

.value-card p {
    color: var(--odish-muted);
    line-height: 1.8;
    margin: 0;
}

/* =========================================
   TIMELINE
========================================= */

.timeline {
    position: relative;

    max-width: 950px;
    margin: auto;
}

.timeline::before {
    content: "";

    position: absolute;

    top: 0;
    left: 30px;

    width: 3px;
    height: 100%;

    background:
        linear-gradient(to bottom,
            var(--odish-red),
            rgba(229, 9, 20, .10));
}

.timeline-item {
    position: relative;

    padding-left: 90px;
    margin-bottom: 70px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: "";

    position: absolute;

    left: 18px;
    top: 10px;

    width: 26px;
    height: 26px;

    border-radius: 50%;

    background: white;
    border: 6px solid var(--odish-red);

    box-shadow:
        0 10px 25px rgba(229, 9, 20, .20);
}

.timeline-item span {
    display: inline-block;

    margin-bottom: 14px;

    color: var(--odish-red);

    font-size: 14px;
    font-weight: 800;

    letter-spacing: .2em;
}

.timeline-item h3 {
    font-size: 32px;
    font-weight: 900;

    margin-bottom: 16px;

    letter-spacing: -1px;
}

.timeline-item p {
    max-width: 650px;

    color: var(--odish-muted);

    line-height: 1.8;
}

/* =========================================
   TEAM
========================================= */

.team-card {
    overflow: hidden;
    transition: all .35s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, .10);
}

.team-photo-frame {
    position: relative;
}

.team-photo-frame > img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center top;
}

.team-photo-pin {
    position: absolute;
    right: 12px;
    bottom: 12px;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 999px;
    background: #fff;
    border: 2px solid rgba(255, 0, 0, .12);
    box-shadow: 0 14px 30px rgba(15, 23, 42, .22);
}

.team-photo-pin img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.team-content {
    padding: 24px;
}

.team-content h3 {
    font-size: 20px;
    font-weight: 900;

    margin-bottom: 8px;
}

.team-content span {
    display: inline-block;

    color: var(--odish-red);

    font-size: 14px;
    font-weight: 700;

    margin-bottom: 18px;
}

.team-content p {
    color: var(--odish-muted);
    line-height: 1.8;

    margin: 0;
}

/* =========================================
   PREMIUM SECTION HEADING
========================================= */

.section-heading {
    max-width: 850px;
    margin: 0 auto 80px auto;
}

.section-heading h2 {
    font-size: clamp(42px, 5vw, 68px);

    line-height: 1.05;
    font-weight: 900;

    letter-spacing: -2px;

    margin-bottom: 18px;
}

.section-heading p {
    font-size: 18px;
    line-height: 1.8;

    color: var(--odish-muted);
}

/* =========================================
   CONTACT PAGE
========================================= */

.contact-section-premium {
    position: relative;
    background:
        radial-gradient(1100px 420px at 12% -8%, rgba(229, 9, 20, .05), transparent 60%),
        radial-gradient(900px 380px at 100% 8%, rgba(229, 9, 20, .04), transparent 55%),
        #ffffff;
}

.contact-info-wrapper {
    padding-right: 30px;
}

/* INFO CARD */

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 20px;

    padding: 24px;
    margin-bottom: 22px;

    background: white;

    border: none;
    border-radius: 24px;

    box-shadow:
        0 10px 35px rgba(0, 0, 0, .05);

    transition: all .35s ease;
}

.contact-info-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 20px 50px rgba(229, 9, 20, .10);
}

/* ICON */

.contact-icon {
    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 22px;

    background: #fff3f4;

    color: var(--odish-red);

    font-size: 26px;

    flex-shrink: 0;
}

.contact-info-card-body {
    flex: 1;
    min-width: 0;
}

.contact-info-card span {
    display: block;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: .15em;

    color: var(--odish-muted);

    margin-bottom: 6px;

    text-transform: uppercase;
}

.contact-info-card h4 {
    font-size: 22px;
    font-weight: 800;

    margin: 0;
}

.contact-info-card h4 a {
    color: var(--odish-text);
    text-decoration: none;
    transition: var(--transition);
    overflow-wrap: anywhere;
}

.contact-info-card h4 a:hover,
.contact-info-card h4 a:focus-visible {
    color: var(--odish-red);
    text-decoration: none;
}

/* SOCIALS */

.contact-socials-wrapper {
    margin-top: 40px;
}

.contact-socials-label {
    display: block;

    margin-bottom: 18px;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: .15em;

    color: var(--odish-muted);

    text-transform: uppercase;
}

.contact-socials {
    display: flex;
    gap: 18px;
}

.contact-socials a {
    width: 56px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;

    background: white;

    border: none;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);

    color: var(--odish-text);

    font-size: 20px;

    transition: all .3s ease;
}

.contact-socials a:hover,
.contact-socials a:focus-visible {
    background: var(--odish-red);

    color: white;

    box-shadow: 0 14px 34px rgba(229, 9, 20, .22);

    transform: translateY(-4px);
}

/* =========================================
   FORM BOX
========================================= */

.contact-form-box {
    position: relative;
    padding: 50px;
    overflow: hidden;
}

.contact-form-box:hover {
    transform: none;
}

.contact-form-plane {
    position: absolute;
    top: 30px;
    right: 40px;
    width: 56px;
    height: 56px;
    pointer-events: none;
}

.contact-form-plane svg {
    position: absolute;
    top: -22px;
    right: 6px;
    width: 150px;
    height: 100px;
}

.contact-form-plane-icon {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;

    background: #fff0f1;

    color: var(--odish-red);

    font-size: 20px;

    box-shadow: 0 12px 30px rgba(229, 9, 20, .14);
}

.contact-form-header {
    margin-bottom: 40px;
    padding-right: 90px;
}

.contact-form-header span {
    display: inline-block;

    margin-bottom: 14px;

    color: var(--odish-red);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: .25em;
}

.contact-form-header h3 {
    font-size: 42px;
    font-weight: 900;

    line-height: 1.1;

    letter-spacing: -1px;
}

.contact-form-header p {
    margin-top: 14px;

    color: var(--odish-muted);

    font-size: 16px;
    line-height: 1.6;
}

/* =========================================
   FORM
========================================= */

.form-group label {
    display: block;

    margin-bottom: 12px;

    font-size: 14px;
    font-weight: 700;

    color: var(--odish-text);
}

.premium-input {
    height: 64px;

    border-radius: 18px;
    border: 1px solid var(--odish-border);

    padding: 0 22px;

    background: #fbfbfc;

    font-size: 15px;

    transition: all .3s ease;

    box-shadow: none !important;
}

textarea.premium-input {
    height: auto;
    padding-top: 20px;
}

.premium-input:focus {
    border-color: rgba(229, 9, 20, .35);

    background: white;

    box-shadow:
        0 0 0 5px rgba(229, 9, 20, .06) !important;
}

/* FIELD ICONS */

.contact-field {
    position: relative;
}

.contact-field-icon {
    position: absolute;
    left: 22px;
    top: 50%;
    z-index: 2;

    transform: translateY(-50%);

    color: var(--odish-muted);
    font-size: 15px;

    transition: color .2s ease;
}

.contact-field:focus-within .contact-field-icon {
    color: var(--odish-red);
}

.contact-field .contact-input {
    padding-left: 54px;
}

.contact-field-textarea .contact-field-icon {
    top: 24px;
    transform: none;
}

.contact-field-textarea textarea.contact-input {
    padding-left: 54px;
}

/* SUBMIT BUTTON */

.contact-submit-btn {
    height: 56px;
    border-radius: 18px;
    font-size: 16px;
}

.contact-submit-btn:hover {
    box-shadow: 0 16px 34px rgba(229, 9, 20, .28);
}

@media (prefers-reduced-motion: no-preference) {
    .contact-submit-btn:hover {
        transform: translateY(-2px) scale(1.015);
    }
}

/* GUARANTEES */

.contact-guarantees {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;

    margin-top: 32px;
    padding-top: 32px;

    border-top: 1px solid var(--odish-border);
}

.contact-guarantee {
    display: flex;
    align-items: center;
    gap: 14px;

    flex: 1 1 180px;
}

.contact-guarantee-icon {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 12px;

    background: #fff3f4;

    color: var(--odish-red);

    font-size: 15px;
}

.contact-guarantee-body {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.contact-guarantee-body strong {
    font-size: 14px;
    font-weight: 800;
    color: var(--odish-text);
}

.contact-guarantee-body span {
    font-size: 13px;
    color: var(--odish-muted);
}

@media (prefers-reduced-motion: no-preference) {
    .contact-form-plane-icon {
        animation: contactPlaneFloat 4s ease-in-out infinite;
    }
}

@keyframes contactPlaneFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@media (max-width: 992px) {
    .contact-info-wrapper {
        padding-right: 0;
    }

    .contact-form-box {
        padding: 40px;
    }

    .contact-form-header {
        padding-right: 80px;
    }

    .contact-form-header h3 {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .contact-info-card {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 22px 20px 24px;
        margin-bottom: 22px;
        border-radius: 22px;
        box-shadow: 0 14px 34px rgba(15, 23, 42, .06);
    }

    .contact-icon {
        width: 56px;
        height: 56px;
        font-size: 20px;
        border-radius: 18px;
    }

    .contact-info-card span {
        margin-bottom: 6px;
        font-size: 12px;
        letter-spacing: .18em;
    }

    .contact-info-card h4 {
        font-size: 22px;
        line-height: 1.2;
    }

    .contact-info-card-body {
        width: 100%;
    }

    .contact-form-box {
        padding: 28px;
    }

    .contact-form-header {
        padding-right: 0;
    }

    .contact-form-header h3 {
        font-size: 28px;
    }

    .contact-form-plane {
        display: none;
    }

    .contact-guarantees {
        flex-direction: column;
        gap: 18px;
        margin-top: 24px;
        padding-top: 24px;
    }
}

.select2-container {
    width: 100% !important;
}

.select2-container .select2-selection--single,
.select2-container .select2-selection--multiple {
    min-height: 62px;
    border: 1px solid var(--odish-border);
    border-radius: 18px;
    background: #fbfbfc;
    box-shadow: none;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    min-height: 60px;
    padding: 0 52px 0 20px;
    color: var(--odish-text);
    font-size: 15px;
    font-weight: 600;
    line-height: 60px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    width: 44px;
    height: 60px;
}

.select2-container--default .select2-selection--multiple {
    padding: 8px 12px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    border: 1px solid rgba(229, 9, 20, .18);
    border-radius: 999px;
    background: #fff4f4;
    color: var(--odish-text);
    font-size: 13px;
    font-weight: 700;
}

.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--focus .select2-selection--multiple,
.select2-container--default.select2-container--open .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--multiple {
    border-color: rgba(229, 9, 20, .35);
    background: #ffffff;
    box-shadow: 0 0 0 5px rgba(229, 9, 20, .06);
}

.select2-dropdown {
    border-color: rgba(22, 26, 34, .12);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(22, 26, 34, .14);
}

.select2-search--dropdown {
    padding: 10px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    min-height: 42px;
    border: 1px solid var(--odish-border);
    border-radius: 12px;
    padding: 0 12px;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background: var(--odish-red);
}

.simple-banner {
    padding: 120px 0 70px;
    background: white;
    border-bottom: 1px solid var(--odish-border);
}

.simple-banner-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* TITLE */
.simple-banner h1 {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 900;
    letter-spacing: -2px;
    color: var(--odish-text);
    margin: 0;
}

/* BREADCRUMB */
.breadcrumb-simple {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 14px;
    font-weight: 600;
}

/* LINKS */
.breadcrumb-simple a {
    color: var(--odish-muted);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-simple a:hover {
    color: var(--odish-red);
}

/* SEPARATOR */
.breadcrumb-simple span {
    color: #c4c4c4;
}

/* ACTIVE */
.breadcrumb-simple .active {
    color: var(--odish-text);
    font-weight: 800;
}


/* CARD */
.artist-card {
    border-radius: 28px;
    overflow: hidden;
    background: white;
    border: 1px solid var(--odish-border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    transition: .35s ease;
}

.artist-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

/* IMAGE */
.artist-image {
    position: relative;
    height: 320px;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* BADGES */
.artist-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    gap: 8px;
}

.badge-vip.account-photo-vip {
    background: linear-gradient(135deg, #ffcc00, #ff9900);
    color: black;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    width: fit-content;
}

.badge-recruteur.account-photo-vip {
    background: #0f172a;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    padding: 7px 12px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, .32);
    box-shadow: 0 12px 28px rgba(15, 23, 42, .22);
}

.badge-recruteur.account-photo-vip i {
    color: #67e8f9;
    font-size: 13px;
}

.badge-status {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 999px;
}

/* BODY */
.artist-body {
    padding: 22px;
}

.artist-body h3 {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 6px;
}

/* META */
.artist-meta {
    font-size: 13px;
    color: var(--odish-muted);
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
}

/* TAGS */
.artist-tags span,
.artist-subtags span {
    display: inline-block;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    margin: 4px 4px 0 0;
}

.artist-tags span {
    background: #fff5f5;
    color: var(--odish-red);
    font-weight: 700;
}

.artist-subtags span {
    background: #f5f5f5;
    color: #333;
}

/* FOOTER */
.artist-footer {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.artist-height {
    font-size: 13px;
    color: var(--odish-muted);
}

/* BUTTON */
.btn-view {
    background: var(--odish-red);
    color: white;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s ease;
}

.btn-view:hover {
    background: #c70811;
    transform: translateY(-2px);
}

.scroll-trigger {
    text-align: center;
    padding: 40px;
    color: var(--odish-muted);
    font-weight: 600;
}

.scroll-trigger span {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: #fff5f5;
    color: var(--odish-red);
    font-size: 13px;
}


/* CARD */
.audition-card-horizontal {
    display: flex;
    gap: 24px;

    background: white;
    border: 1px solid var(--odish-border);
    border-radius: 28px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);

    overflow: hidden;

    transition: .35s ease;
}

.audition-card-horizontal:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

/* IMAGE LEFT */
.audition-image {
    width: 320px;
    min-width: 320px;
    height: 100%;
}

.audition-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENT RIGHT */
.audition-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

/* TOP */
.audition-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

/* DOMAIN */
.audition-domain {
    font-size: 12px;
    font-weight: 800;
    color: var(--odish-red);

    background: #fff5f5;
    padding: 6px 12px;
    border-radius: 999px;
}

/* BADGE */
.audition-badge {
    font-size: 12px;
    font-weight: 700;

    color: #0a7a2f;
    background: rgba(10, 122, 47, 0.08);

    padding: 6px 12px;
    border-radius: 999px;
}

/* TITLE */
.audition-content h3 {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 10px;
}

/* DESCRIPTION */
.audition-content p {
    font-size: 14px;
    color: var(--odish-muted);
    line-height: 1.6;
    margin-bottom: 14px;
}

/* META */
.audition-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    font-size: 13px;
    color: var(--odish-muted);

    margin-bottom: 18px;
}

/* FOOTER */
.audition-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* PAY */
.audition-pay {
    font-size: 13px;
    font-weight: 700;
    color: var(--odish-text);
}

/* BUTTON */
.audition-btn {
    background: var(--odish-red);
    color: white;

    font-size: 13px;
    font-weight: 700;

    padding: 10px 16px;
    border-radius: 12px;

    text-decoration: none;

    transition: .3s ease;
}

.audition-btn:hover {
    background: #c70811;
    transform: translateY(-2px);
}

.auditions-section {
    background: #fafafa;
}

/* =========================================
   ARTISTE-DETAILS
========================================= */

/* =========================================
   ARTIST PROFILE HEADER
========================================= */

/* HERO CARD */
.artist-profile-hero {
    position: relative;
    display: flex;
    gap: 40px;
    padding: 40px;
    border-radius: 28px;
    margin-top: 60px;
}

.artist-profile-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.artist-directory-layout {
    display: grid;
    grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.artist-search-sidebar {
    position: sticky;
    top: calc(var(--navbar-height) + 18px);
    z-index: 20;
}

.artist-directory-results {
    min-width: 0;
}

.artist-results-toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.artist-results-kicker {
    display: block;
    margin-bottom: 4px;
    color: var(--odish-red);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.artist-results-toolbar h2 {
    margin: 0;
    color: var(--odish-text);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0;
}

.directory-search-toggle {
    display: none;
}

.directory-search-content {
    display: block;
}

.artist-search-panel {
    max-height: calc(100vh - var(--navbar-height) - 36px);
    margin: 0;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid var(--odish-border);
    background: #fff;
    overflow-y: auto;
}

.artist-search-panel label {
    display: block;
    margin: 0 0 5px;
    color: var(--odish-text);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.artist-search-main {
    margin-bottom: 12px;
}

.artist-search-input-wrap {
    position: relative;
}

.artist-search-input-wrap i {
    position: absolute;
    left: 14px;
    top: 50%;
    z-index: 2;
    color: var(--odish-red);
    transform: translateY(-50%);
}

.artist-search-input-wrap .premium-input {
    padding-left: 38px;
}

.artist-search-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.artist-search-field {
    min-width: 0;
}

.artist-search-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
}

.artist-search-actions .btn-primary-premium,
.artist-search-actions .btn-secondary-premium {
    display: inline-flex;
    width: 100%;
    min-height: 38px;
    padding: 9px 12px;
    border-radius: 10px;
    font-size: 13px;
    justify-content: center;
    white-space: nowrap;
}

.artist-search-actions .btn-secondary-premium {
    text-decoration: none;
}

.artist-search-panel .premium-input:disabled {
    background: #f5f5f5;
    color: var(--odish-muted);
    cursor: not-allowed;
}

.artist-search-panel .premium-input,
.audition-search-panel .premium-input {
    height: 42px;
    min-height: 42px;
    padding-top: 8px;
    padding-bottom: 8px;
    border-radius: 12px;
    font-size: 13px;
}

@media(max-width: 1200px) {
    .artist-directory-layout {
        grid-template-columns: 300px minmax(0, 1fr);
        gap: 24px;
    }
}

@media(max-width: 992px) {
    .artist-directory-layout {
        display: block;
    }

    .artist-search-sidebar {
        top: calc(var(--navbar-height) + 8px);
        margin-bottom: 22px;
    }
}

@media(max-width: 768px) {
    .artist-search-sidebar {
        top: calc(var(--navbar-height) + 6px);
    }

    .directory-search-toggle {
        display: flex;
        width: 100%;
        min-height: 42px;
        padding: 0 12px;
        border: 0;
        border-radius: 12px;
        background: #fff1f2;
        color: var(--odish-text);
        align-items: center;
        justify-content: space-between;
        font-size: 13px;
        font-weight: 900;
        text-transform: uppercase;
    }

    .directory-search-toggle span,
    .directory-search-toggle i {
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .directory-search-toggle > i {
        color: var(--odish-red);
        transition: transform .2s ease;
    }

    .directory-search-content {
        display: none;
        padding-top: 12px;
    }

    .artist-search-panel.is-open .directory-search-content,
    .audition-search-panel.is-open .directory-search-content {
        display: block;
    }

    .artist-search-panel.is-open .directory-search-toggle > i,
    .audition-search-panel.is-open .directory-search-toggle > i {
        transform: rotate(180deg);
    }

    .artist-search-panel {
        max-height: calc(100vh - var(--navbar-height) - 12px);
        padding: 12px;
        border-radius: 16px;
        box-shadow: 0 16px 38px rgba(0, 0, 0, .08);
    }

    .artist-search-panel label {
        margin-bottom: 5px;
        font-size: 10px;
    }

    .artist-search-main {
        margin-bottom: 10px;
    }

    .artist-search-input-wrap i {
        left: 13px;
        font-size: 12px;
    }

    .artist-search-input-wrap .premium-input {
        padding-left: 36px;
    }

    .artist-search-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .artist-search-panel .premium-input {
        height: 36px;
        min-height: 36px;
        padding-top: 6px;
        padding-bottom: 6px;
        font-size: 12px;
    }

    .artist-search-actions {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .artist-search-actions .btn-primary-premium,
    .artist-search-actions .btn-secondary-premium {
        min-height: 34px;
        padding: 7px 9px;
        font-size: 12px;
        justify-content: center;
    }
}

@media(max-width: 480px) {
    .artist-search-panel {
        padding: 10px;
    }

    .artist-search-grid {
        gap: 8px;
    }

    .artist-search-actions .btn-primary-premium,
    .artist-search-actions .btn-secondary-premium {
        padding-inline: 8px;
    }
}

.artist-profile-list .artist-profile-hero {
    margin-top: 0;
}

.artist-profile-hero--detail {
    display: grid;
    grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
    margin-top: 16px;
    padding: 18px;
    border: 1px solid var(--odish-border);
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .08);
}

.artist-profile-hero--detail .artist-left {
    width: min(100%, 220px);
    aspect-ratio: 1;
    min-height: 0;
    align-self: center;
    justify-self: center;
}

.artist-profile-hero--detail .artist-left > a,
.artist-profile-hero--detail .artist-left > img {
    display: block;
    width: 100%;
    height: 100%;
}

.artist-profile-hero--detail .artist-avatar {
    width: 100%;
    height: 100%;
    min-height: 0;
    border-radius: 50%;
    box-shadow: none;
}

.artist-profile-hero--detail .artist-right {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
        "header"
        "tags"
        "bio"
        "meta"
        "social"
        "actions";
    align-content: center;
    min-width: 0;
}

.artist-profile-hero--detail .artist-right::after {
    display: none;
}

.artist-profile-hero--detail .artist-header-top {
    grid-area: header;
    min-width: 0;
}

.artist-profile-hero--detail .artist-header-top h1 {
    margin: 0;
    font-size: clamp(30px, 3.4vw, 46px);
    line-height: 1.05;
    letter-spacing: 0;
}

.artist-profile-hero--detail .artist-tags {
    grid-area: tags;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.artist-profile-hero--detail .artist-tags span {
    margin: 0;
    padding: 7px 12px;
    background: #fff1f2;
    font-size: 13px;
    font-weight: 900;
}

.artist-profile-hero--detail .artist-bio {
    grid-area: bio;
    max-width: 760px;
    margin: 16px 0 0;
    font-size: 15px;
    line-height: 1.55;
}

.artist-profile-hero--detail .artist-meta-grid {
    grid-area: meta;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 16px 0 0;
    padding-top: 14px;
    border-top: 1px solid var(--odish-border);
    color: #4f5661;
    font-size: 15px;
}

.artist-profile-hero--detail .artist-meta-grid .profile-meta-item,
.artist-profile-hero--detail .artist-meta-grid .profile-view-counter {
    min-height: 28px;
    padding: 0 16px 0 0;
    margin: 0 16px 8px 0;
    border-right: 1px solid var(--odish-border);
}

.artist-profile-hero--detail .artist-meta-grid .profile-meta-item:last-child,
.artist-profile-hero--detail .artist-meta-grid .profile-view-counter:last-child {
    border-right: 0;
}

.artist-profile-hero--detail .public-social-links {
    grid-area: social;
}

.artist-profile-hero--detail .artist-actions {
    position: relative;
    z-index: 1;
    grid-area: actions;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    margin: 14px 0 0;
}

.artist-profile-hero--detail .artist-actions .btn-primary-premium,
.artist-profile-hero--detail .artist-actions .btn-secondary-premium,
.artist-profile-hero--detail .artist-actions .odish-message-disabled-tooltip,
.artist-profile-hero--detail .artist-actions .odish-message-disabled-tooltip button {
    width: auto;
}

.artist-profile-hero--detail .artist-actions .btn-primary-premium,
.artist-profile-hero--detail .artist-actions .btn-secondary-premium {
    min-height: 36px;
    padding: 8px 12px;
    border-radius: 8px;
    justify-content: center;
    text-align: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 800;
    box-shadow: none;
}

.artist-profile-hero--detail .artist-actions .btn-primary-premium:not(#shareArtistProfileButton),
.artist-profile-hero--detail .artist-actions .btn-secondary-premium {
    background: #f0f2f5;
    color: #050505;
    border: 1px solid #e4e6eb;
}

.artist-profile-hero--detail .artist-actions .btn-primary-premium:not(#shareArtistProfileButton):hover,
.artist-profile-hero--detail .artist-actions .btn-secondary-premium:hover {
    background: #e4e6eb;
    color: #050505;
    transform: none;
}

.artist-profile-hero--detail .artist-actions #shareArtistProfileButton {
    background: var(--odish-red);
    border: 1px solid var(--odish-red);
    color: #fff;
}

.artist-profile-hero--detail .artist-actions .btn-secondary-premium {
    width: auto;
    min-width: 0;
    padding: 8px 12px;
}

.artist-profile-list {
    gap: 14px;
}

.artist-profile-page .artist-sections {
    margin-top: 12px;
    gap: 14px;
}

.artist-profile-page .artist-tabs-card {
    padding: 18px;
}

.artist-directory-card {
    display: grid;
    grid-template-columns: 142px minmax(0, 1fr) 132px;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: stretch;
    min-height: 164px;
    padding: 12px;
    border: 1px solid var(--odish-border);
    border-radius: 16px;
    box-shadow: 0 12px 34px rgba(15, 23, 42, .06);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.artist-directory-card:hover {
    border-color: rgba(226, 0, 26, .22);
    box-shadow: 0 18px 48px rgba(15, 23, 42, .09);
    transform: translateY(-2px);
}

.artist-directory-card__media {
    grid-row: 1 / 3;
    position: relative;
    width: 138px;
    height: 138px;
    min-height: 0;
    align-self: center;
    border-radius: 50%;
}

.artist-directory-card__media > a {
    display: block;
    width: 100%;
    height: 100%;
}

.artist-directory-card__avatar {
    width: 100%;
    height: 100%;
    min-height: 0;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: none;
}

.artist-directory-card__photo-count {
    position: absolute;
    right: 10px;
    bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .68);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.artist-directory-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.artist-directory-card__header {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.artist-directory-card__header h2 {
    min-width: 0;
    margin: 0;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: 0;
}

.artist-directory-card__header h2 a {
    display: block;
    overflow: hidden;
    color: var(--odish-text);
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.artist-directory-card__header h2 a:hover {
    color: var(--odish-red);
}

.artist-directory-card__tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 7px;
}

.artist-directory-card__tags span {
    display: inline-flex;
    max-width: 100%;
    padding: 4px 8px;
    border-radius: 999px;
    background: #fff1f2;
    color: var(--odish-red);
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
}

.artist-directory-card__bio {
    display: -webkit-box;
    margin: 8px 0 0;
    overflow: hidden;
    color: var(--odish-muted);
    font-size: 13px;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.artist-directory-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    margin: 9px 0 0;
    color: #545861;
    font-size: 12px;
}

.artist-directory-card__meta .profile-meta-item,
.artist-directory-card__meta .profile-view-counter {
    gap: 7px;
    min-height: 18px;
    white-space: nowrap;
}

.artist-directory-card__meta i,
.artist-directory-card__meta .profile-view-counter i {
    width: 14px;
    color: var(--odish-red);
    font-size: 12px;
    text-align: center;
}

.artist-directory-card__actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
}

.artist-directory-card__actions .btn-primary-premium,
.artist-directory-card__actions .btn-secondary-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-height: 36px;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 13px;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
}

.artist-directory-card__actions .btn-secondary-premium {
    background: #fff;
}

.artist-directory-card__view-count {
    grid-column: 3;
    grid-row: 2;
    align-self: end;
}

@media(max-width: 1200px) {
    .artist-directory-card {
        grid-template-columns: 132px minmax(0, 1fr) 120px;
        gap: 14px;
    }

    .artist-directory-card__header h2 {
        font-size: 20px;
    }
}

@media(max-width: 992px) {
    .artist-directory-card {
        grid-template-columns: 132px minmax(0, 1fr) 120px;
    }
}

/* AVATAR */
.artist-left {
    position: relative;
}

.artist-left > a {
    display: block;
}

.artist-avatar {
    width: 260px;
    height: 320px;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

/* RIGHT SIDE */
.artist-right {
    flex: 1;
}

.artist-header-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.artist-header-top h1 {
    font-size: 42px;
    font-weight: 900;
}

.artist-header-top h1 a {
    color: var(--odish-text);
    text-decoration: none;
}

.artist-header-top h1 a:hover {
    color: var(--odish-red);
}

/* TAGS */
.artist-tags span {
    display: inline-block;
    background: #fff5f5;
    color: var(--odish-red);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    margin-right: 6px;
    margin-top: 10px;
}

/* BIO */
.artist-bio {
    margin: 18px 0;
    color: var(--odish-muted);
    line-height: 1.7;
}

/* META GRID */
.artist-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 20px 0;
    font-size: 14px;
    color: var(--odish-muted);
}

.artist-meta-grid i {
    color: var(--odish-red);
    width: 16px;
}

.profile-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.profile-meta-item > span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.profile-view-counter {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: inherit;
    font: inherit;
    white-space: nowrap;
}

.profile-view-counter i {
    color: var(--odish-red);
    width: 16px;
}

.profile-view-counter--strong {
    color: var(--odish-text);
    font-weight: 900;
}

.public-list-view-count {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    color: #686b72;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.public-list-view-count i {
    color: #686b72;
    font-size: 22px;
    line-height: 1;
}

.artist-profile-hero__view-count {
    position: absolute;
    right: 24px;
    bottom: 20px;
}

/* ACTIONS */
.artist-actions {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}

.public-social-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.public-social-link {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--odish-border);
    border-radius: 50%;
    background: #fff;
    color: var(--odish-text);
    font-size: 1.25rem;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.public-social-link:hover {
    transform: translateY(-2px);
    border-color: rgba(229, 9, 20, .24);
    box-shadow: 0 12px 24px rgba(18, 24, 38, .12);
}

/* SECTIONS */
.artist-sections {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* SECTION BOX */
.section-box {
    padding: 30px;
    border-radius: 24px;
}

/* SOCIAL */
.social-grid {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-item {
    background: #fff;
    border: 1px solid var(--odish-border);
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 14px;
}

/* PHOTOS */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.photo-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
}

/* VIDEOS */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.video-grid iframe {
    width: 100%;
    height: 260px;
    border-radius: 16px;
}

/* TIMELINE */
.timeline-box div,
.experience-box div {
    padding: 16px;
    border-radius: 16px;
    border: 1px solid var(--odish-border);
    margin-bottom: 12px;
}

/* PAGE */
.audition-details-page {
    padding: 24px 0;
}

/* HERO */
.audition-hero {
    display: grid;
    grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--odish-border);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 14px 45px rgba(0,0,0,.045);
}

/* IMAGE */
.audition-hero-image {
    position: relative;
    width: 100%;
    min-width: 0;
    align-self: stretch;
    background: #f4f6f8;
    border-right: 1px solid var(--odish-border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.audition-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* CONTENT */
.audition-hero-content {
    min-width: 0;
    padding: 28px;
}

/* TAGS */
.audition-top-tags {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.audition-domain,
.audition-status {
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.audition-domain {
    background: #fff5f5;
    color: var(--odish-red);
}

.audition-status {
    background: rgba(0, 180, 80, .08);
    color: #00a651;
}

/* TITLE */
.audition-hero-content h1 {
    font-size: 34px;
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 16px;
}

/* DESC */
.audition-description {
    color: var(--odish-muted);
    line-height: 1.65;
    margin-bottom: 24px;
}

/* META GRID */
.audition-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 22px;
}

.meta-card {
    background: #fafafa;
    border: 1px solid var(--odish-border);
    padding: 14px;
    border-radius: 16px;
}

.meta-card span {
    display: block;
    font-size: 12px;
    color: var(--odish-muted);
    margin-bottom: 8px;
}

.meta-card strong {
    font-size: 16px;
    font-weight: 800;
}

/* DATES */
.audition-dates {
    display: flex;
    gap: 24px;
    margin-bottom: 0;
    font-size: 15px;
    color: var(--odish-muted);
}

/* ACTIONS */
.audition-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.audition-detail-card-actions {
    grid-column: 1 / -1;
    padding: 12px 18px;
    border-top: 1px solid var(--odish-border);
    background: #fff;
}

.audition-details-page .audition-actions .audition-row-actions {
    display: contents;
}

.audition-details-page .audition-actions .btn-primary-premium,
.audition-details-page .audition-actions .btn-secondary-premium,
.audition-details-page .audition-actions .audition-favorite-action,
.audition-details-page .audition-actions .application-status {
    width: auto;
    min-height: 36px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.1;
    white-space: nowrap;
    gap: 7px;
    box-shadow: none;
}

.audition-details-page .audition-actions .btn-secondary-premium,
.audition-details-page .audition-actions .audition-favorite-action {
    border-color: #e4e6eb;
    background: #f0f2f5;
    color: #050505;
}

.audition-details-page .audition-actions .btn-secondary-premium:hover,
.audition-details-page .audition-actions .audition-favorite-action:hover {
    border-color: #e4e6eb;
    background: #e4e6eb;
    color: #050505;
    transform: none;
}

.audition-details-page .audition-actions #shareAuditionButton {
    background: var(--odish-red);
    border-color: var(--odish-red);
    color: #fff;
}

.audition-details-page .audition-actions .audition-row-actions,
.audition-details-page .audition-actions .audition-favorite-action {
    flex: 0 0 auto;
}

@media(max-width: 992px) {
    .audition-hero {
        grid-template-columns: 1fr;
    }

    .audition-hero-image {
        width: 100%;
        min-width: 0;
        aspect-ratio: 16 / 10;
        border-right: 0;
        border-bottom: 1px solid var(--odish-border);
    }

    .audition-hero-image img {
        height: 100%;
    }
}

@media(max-width: 576px) {
    .audition-details-page {
        padding: 14px 0;
    }

    .audition-hero-content {
        padding: 24px;
    }

    .audition-hero-content h1 {
        font-size: 30px;
    }

    .audition-meta-grid {
        grid-template-columns: 1fr;
    }

    .audition-dates {
        flex-direction: column;
        gap: 12px;
    }

    .audition-detail-card-actions {
        padding: 10px;
    }

    .audition-details-page .audition-actions {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        gap: 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .audition-details-page .audition-actions .btn-primary-premium,
    .audition-details-page .audition-actions .btn-secondary-premium,
    .audition-details-page .audition-actions .audition-favorite-action,
    .audition-details-page .audition-actions .application-status {
        width: auto;
        min-height: 34px;
        padding: 7px 10px;
        border-radius: 8px;
        font-size: 13px;
        flex: 0 0 auto;
    }
}

/* SECTIONS */
.audition-sections {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media(max-width: 576px) {
    .audition-sections {
        margin-top: 10px;
        gap: 10px;
    }

    .audition-details-page .section-box {
        padding: 14px;
    }

    .audition-details-page .section-box h2 {
        font-size: 18px;
        margin-bottom: 8px;
    }
}

/* SECTION BOX */
.section-box {
    padding: 32px;
}

.section-box h2 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 20px;
}

.audition-details-page .section-box {
    padding: 22px;
}

.audition-details-page .section-box h2 {
    font-size: 24px;
    margin-bottom: 14px;
}

.artist-tabs-card {
    overflow: visible;
}

.artist-profile-tabs {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
    padding: 2px 2px 14px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--odish-border);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.artist-profile-tabs::-webkit-scrollbar {
    display: none;
}

.artist-profile-tabs .nav-link {
    flex: 0 0 auto;
    scroll-snap-align: start;
    border: 1px solid var(--odish-border);
    border-radius: 14px;
    background: #fff;
    color: var(--odish-text);
    margin: 0;
    padding: 12px 18px;
    font-weight: 800;
    white-space: nowrap;
}

.artist-profile-tabs .nav-link::after {
    bottom: 8px;
}

.artist-profile-tabs .nav-link:hover,
.artist-profile-tabs .nav-link:focus-visible {
    border-color: rgba(229, 9, 20, .18);
    color: var(--odish-red);
}

.artist-profile-tabs .nav-link.active {
    background: #fff1f2;
    color: var(--odish-red);
    border-color: rgba(229, 9, 20, .32);
    box-shadow: 0 12px 30px rgba(229, 9, 20, .12);
}

.artist-profile-tabs .nav-link.active::after {
    width: 32px;
}

.artist-profile-tab-content {
    min-height: 0;
}

.artist-public-profile {
    display: grid;
    gap: 14px;
}

.artist-public-profile-card {
    border: 1px solid var(--odish-border);
    border-radius: 16px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 16px 42px rgba(15, 23, 42, .06);
}

.artist-public-profile-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.artist-public-profile-title > span {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff1f2;
    color: var(--odish-red);
    font-size: 16px;
}

.artist-public-profile-title h3 {
    margin: 0;
    color: var(--odish-text);
    font-size: 20px;
    font-weight: 900;
}

.artist-public-profile-card--about p {
    color: var(--odish-text);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.8;
    margin: 0;
    white-space: pre-line;
}

.artist-public-chip-grid,
.artist-public-info-grid {
    display: grid;
    gap: 14px;
}

.artist-public-chip-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.artist-public-info-grid--appearance {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.artist-public-info-grid--measurements {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.artist-public-chip,
.artist-public-info-item {
    display: flex;
    align-items: center;
    min-width: 0;
}

.artist-public-chip {
    gap: 12px;
    border: 1px solid rgba(229, 9, 20, .08);
    border-radius: 12px;
    background: linear-gradient(135deg, #fff6f7, #fff);
    padding: 15px 16px;
}

.artist-public-chip i,
.artist-public-info-item > span {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #fff1f2;
    color: var(--odish-red);
}

.artist-public-chip strong {
    min-width: 0;
    color: var(--odish-text);
    font-size: 15px;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.artist-public-info-item {
    gap: 12px;
    padding: 6px 0;
}

.artist-public-info-item small {
    display: block;
    color: var(--odish-muted);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 6px;
}

.artist-public-info-item strong {
    display: block;
    color: var(--odish-text);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.artist-public-note label {
    display: block;
    color: var(--odish-muted);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 10px;
}

.artist-public-note p {
    border-radius: 12px;
    background: #f8fafc;
    color: var(--odish-text);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.7;
    margin: 0;
    padding: 18px 20px;
    white-space: pre-line;
}

.artist-public-empty {
    grid-column: 1 / -1;
    border-radius: 12px;
    background: #f8fafc;
    color: var(--odish-muted);
    font-size: 15px;
    font-weight: 700;
    padding: 16px;
}

@media (max-width: 991.98px) {
    .artist-public-chip-grid,
    .artist-public-info-grid--appearance,
    .artist-public-info-grid--measurements {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .artist-public-profile {
        gap: 14px;
    }

    .artist-public-profile-card {
        border-radius: 14px;
        padding: 18px;
    }

    .artist-public-profile-title {
        gap: 12px;
        margin-bottom: 14px;
    }

    .artist-public-profile-title > span {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
        font-size: 14px;
    }

    .artist-public-profile-title h3 {
        font-size: 17px;
    }

    .artist-public-profile-card--about p,
    .artist-public-note p {
        font-size: 14px;
        line-height: 1.65;
    }

    .artist-public-chip-grid,
    .artist-public-info-grid--appearance,
    .artist-public-info-grid--measurements {
        grid-template-columns: 1fr;
    }

    .artist-public-chip {
        padding: 13px 14px;
    }

    .artist-public-info-item {
        border-bottom: 1px solid var(--odish-border);
        padding: 10px 0;
    }

    .artist-public-info-item:last-child {
        border-bottom: 0;
    }
}

.artist-tab-section {
    margin-bottom: 30px;
}

.artist-tab-section:last-child {
    margin-bottom: 0;
}

.artist-public-about p {
    color: var(--odish-muted);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.75;
    margin: 0;
    white-space: pre-line;
}

.public-media-grid {
    display: grid;
    gap: 16px;
}

.public-photo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.public-video-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.public-album-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.public-media-card {
    background: #fff;
    border: 1px solid var(--odish-border);
    border-radius: 18px;
    overflow: hidden;
}

.public-album-button {
    border: 0;
    background: #0f172a;
    cursor: pointer;
    display: block;
    min-height: 112px;
    padding: 0;
    position: relative;
    text-align: left;
    width: 100%;
}

.public-album-button img {
    display: block;
    height: 100%;
    min-height: 112px;
    object-fit: cover;
    opacity: .82;
    transition: opacity .2s ease, transform .2s ease;
    width: 100%;
}

.public-album-button:hover img {
    opacity: .95;
    transform: scale(1.03);
}

.public-album-overlay {
    bottom: 0;
    color: #fff;
    display: block;
    left: 0;
    padding: 10px;
    position: absolute;
    right: 0;
    text-shadow: 0 1px 14px rgba(0, 0, 0, .55);
}

.public-album-overlay strong,
.public-album-overlay small {
    display: block;
}

.public-album-overlay strong {
    font-size: .92rem;
    font-weight: 900;
}

.public-album-overlay small {
    font-size: .76rem;
    font-weight: 800;
    opacity: .9;
}

.public-photo-card img {
    aspect-ratio: 4 / 3;
    display: block;
    object-fit: cover;
    width: 100%;
}

.public-media-card h4 {
    color: var(--odish-text);
    font-size: 1rem;
    font-weight: 900;
    margin: 0;
    padding: 12px 14px;
}

.public-media-list {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.public-audio-card {
    align-items: stretch;
    display: grid;
    gap: 0;
    grid-template-columns: 1fr;
    padding: 18px;
}

.public-audio-card .public-media-info {
    border-bottom: 1px solid rgba(15, 23, 42, .08);
    padding-bottom: 14px;
}

.public-audio-card .public-media-control {
    padding-top: 14px;
}

.public-media-info {
    align-items: center;
    display: flex;
    gap: 12px;
    min-width: 0;
}

.public-media-info > i {
    align-items: center;
    background: #fff1f2;
    border-radius: 14px;
    color: var(--odish-red);
    display: inline-flex;
    flex: 0 0 44px;
    height: 44px;
    justify-content: center;
    width: 44px;
}

.public-media-info h3 {
    color: var(--odish-text);
    font-size: 1.05rem;
    font-weight: 900;
    margin: 0;
}

.public-media-info span {
    color: var(--odish-muted);
    display: block;
    font-size: .9rem;
    font-weight: 800;
}

.public-media-control {
    min-width: 0;
}

.public-media-control audio {
    width: 100%;
}

.public-media-link,
.public-video-link {
    align-items: center;
    background: #fff1f2;
    border: 1px solid rgba(229, 9, 20, .16);
    border-radius: 14px;
    color: var(--odish-red);
    display: inline-flex;
    font-weight: 900;
    gap: 8px;
    justify-content: center;
    min-height: 44px;
    padding: 10px 14px;
    text-decoration: none;
    width: 100%;
}

.public-media-link:hover,
.public-video-link:hover {
    background: var(--odish-red);
    color: #fff;
}

.public-video-frame {
    background: #0f172a;
    aspect-ratio: 16 / 9;
}

.public-video-frame video {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.public-video-frame iframe {
    height: 100%;
    width: 100%;
}

.public-video-link {
    border: 0;
    border-radius: 0;
    height: 100%;
}

.public-video-info {
    padding: 16px;
}

.public-media-modal {
    z-index: 12050 !important;
}

.public-media-modal .modal-content {
    border: 0;
    border-radius: 18px;
    overflow: hidden;
}

.public-media-modal .modal-header {
    border-color: var(--odish-border);
}

.public-media-modal .modal-header p {
    color: var(--odish-muted);
    font-weight: 700;
    margin: 4px 0 0;
}

.public-artist-albums__grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.public-artist-album-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
    color: inherit;
    cursor: pointer;
    display: block;
    overflow: hidden;
    padding: 0;
    text-align: left;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    width: 100%;
}

.public-artist-album-card:hover,
.public-artist-album-card:focus-visible {
    border-color: rgba(229, 9, 20, .32);
    box-shadow: 0 18px 36px rgba(15, 23, 42, .12);
    transform: translateY(-2px);
}

.public-artist-album-card__cover {
    align-items: center;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, #151515, #2a2a2a);
    color: #fff;
    display: flex;
    justify-content: center;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.public-artist-album-card__cover::after {
    background: linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, .38));
    content: "";
    inset: 0;
    position: absolute;
}

.public-artist-album-card__cover img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.public-artist-album-card__cover i {
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.public-artist-album-card__body {
    display: block;
    padding: 12px 14px 14px;
}

.public-artist-album-card__body strong,
.public-artist-album-card__body span {
    display: block;
}

.public-artist-album-card__body strong {
    color: var(--odish-text);
    font-weight: 900;
    line-height: 1.15;
}

.public-artist-album-card__body span {
    color: var(--odish-muted);
    font-size: .9rem;
    font-weight: 800;
    margin-top: 4px;
}

.public-artist-photo-carousel .carousel-item {
    background: #080808;
}

.public-artist-photo-carousel .carousel-item img {
    max-height: min(72vh, 760px);
    object-fit: contain;
}

.artist-empty-state {
    padding: 28px;
    border-radius: 18px;
    border: 1px dashed var(--odish-border);
    background: #fafafa;
    color: var(--odish-muted);
    font-weight: 800;
    text-align: center;
}

/* CRITERIA */
.criteria-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.criteria-item {
    padding: 16px;
    border-radius: 14px;
    background: #fafafa;
    border: 1px solid var(--odish-border);
}

/* RECRUITER */
.recruiter-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.recruiter-box span {
    display: block;
    font-size: 12px;
    color: var(--odish-muted);
    margin-bottom: 8px;
}

.recruiter-box strong {
    font-size: 16px;
    font-weight: 800;
}

.audition-details-page .audition-detail-section {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 26px;
    align-items: start;
    border-left: 3px solid var(--odish-red);
    border-radius: 14px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, .06);
}

.audition-detail-section-icon {
    width: 66px;
    height: 66px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff1f2;
    color: var(--odish-red);
    font-size: 28px;
}

.audition-detail-section-content {
    min-width: 0;
}

.audition-detail-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.audition-details-page .audition-detail-section-heading h2 {
    margin-bottom: 0;
}

.audition-details-page .audition-project-description {
    margin-top: 14px;
    color: var(--odish-text);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
}

.audition-details-page .criteria-grid {
    gap: 14px 16px;
}

.audition-details-page .criteria-item {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 10px 14px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 26px rgba(15, 23, 42, .035);
    color: var(--odish-text);
    font-size: 15px;
    font-weight: 400;
}

.audition-details-page .criteria-item i {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff1f2;
    color: var(--odish-red);
}

.audition-details-page .recruiter-box {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
}

.audition-details-page .recruiter-info-item {
    min-width: 0;
    padding: 4px 26px 4px 0;
    margin-right: 26px;
    border-right: 1px solid var(--odish-border);
}

.audition-details-page .recruiter-info-item:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: 0;
}

.audition-details-page .recruiter-info-item > i {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    border-radius: 50%;
    background: #fff1f2;
    color: var(--odish-red);
}

.audition-details-page .recruiter-box span {
    margin-bottom: 8px;
    color: var(--odish-muted);
    font-size: 13px;
    font-weight: 600;
}

.audition-details-page .recruiter-box strong,
.audition-details-page .recruiter-box .recruteur-profile-link {
    color: var(--odish-text);
    font-size: 15px;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.audition-details-page .recruiter-box .recruteur-profile-link {
    margin-top: 0;
}


/* LAYOUT */
.dashboard-layout {
    display: flex;
    min-height: calc(100vh - var(--navbar-height));
    background: #f7f8fa;
}

/* SIDEBAR */
.dashboard-sidebar {
    width: 290px;
    flex: 0 0 290px;
    background: white;
    border-right: 1px solid var(--odish-border);

    padding: 30px 20px;

    display: flex;
    flex-direction: column;
    gap: 10px;

    position: sticky;
    top: var(--navbar-height);
    height: calc(100vh - var(--navbar-height));
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(229, 9, 20, .32) transparent;
}

.dashboard-sidebar::-webkit-scrollbar {
    width: 6px;
}

.dashboard-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.dashboard-sidebar::-webkit-scrollbar-thumb {
    background: rgba(229, 9, 20, .28);
    border-radius: 999px;
}

/* MENU ITEM */
.sidebar-item {
    display: flex;
    align-items: center;
    gap: 16px;

    padding: 18px 20px;

    border-radius: 18px;

    text-decoration: none;

    color: var(--odish-text);

    font-size: 16px;
    font-weight: 700;

    transition: all .3s ease;
}

.sidebar-item > span:not(.sidebar-badge) {
    min-width: 0;
}

.sidebar-badge {
    min-width: 22px;
    height: 22px;
    margin-left: auto;
    padding: 0 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--odish-red);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
}

/* ICON */
.sidebar-item i {
    font-size: 18px;
    width: 20px;
}

/* HOVER */
.sidebar-item:hover {
    background: #fff5f5;
    color: var(--odish-red);

    transform: translateX(4px);
}

/* ACTIVE */
.sidebar-item.active {
    background: #fff1f2;
    color: var(--odish-red);

    box-shadow:
        inset 0 0 0 1px rgba(229, 9, 20, .06);
}

/* FOCUS (remplace le contour bleu par défaut du navigateur) */
.sidebar-item:focus {
    outline: none;
}

.sidebar-item:focus-visible {
    outline: 2px solid var(--odish-red);
    outline-offset: 2px;
}

.sidebar-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sidebar-group-title {
    width: 100%;
    border: 0;
    cursor: pointer;
    color: var(--odish-text);
    background: transparent;
    text-align: left;
}

.sidebar-group-title:hover {
    background: #fff5f5;
    color: var(--odish-red);
    transform: none;
}

.sidebar-group-title.active {
    background: #fff1f2;
    color: var(--odish-red);
}

.sidebar-group-title:focus {
    outline: none;
}

.sidebar-group-title:focus-visible {
    outline: 2px solid var(--odish-red);
    outline-offset: 2px;
}

.sidebar-group-chevron {
    margin-left: auto;
    transition: transform .25s ease;
}

.sidebar-group-title[aria-expanded="true"] .sidebar-group-chevron {
    transform: rotate(180deg);
}

.sidebar-submenu {
    padding-left: 22px;
}

.sidebar-submenu.show,
.sidebar-submenu.collapsing {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sidebar-subitem {
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
}

.sidebar-subitem i {
    font-size: 15px;
}

@media(max-width: 992px) {
    .sidebar-submenu-floating {
        position: fixed !important;
        z-index: 1085;
        display: flex !important;
        flex-direction: column;
        gap: 6px;
        padding: 10px;
        border: 1px solid rgba(229, 9, 20, .12);
        border-radius: 20px;
        background: rgba(255, 255, 255, .98);
        box-shadow:
            0 24px 60px rgba(12, 16, 24, .18),
            0 1px 0 rgba(255, 255, 255, .9) inset;
        overflow-y: auto;
        overscroll-behavior: contain;
        backdrop-filter: blur(18px);
    }

    .sidebar-submenu-floating::before {
        content: "";
        position: absolute;
        top: 0;
        left: 18px;
        right: 18px;
        height: 3px;
        border-radius: 0 0 999px 999px;
        background: var(--odish-red);
    }

    .sidebar-submenu-floating .sidebar-subitem {
        width: 100%;
        justify-content: flex-start;
        padding: 13px 14px;
        border-radius: 14px;
        white-space: normal;
    }

    .sidebar-submenu-floating .sidebar-subitem:hover {
        transform: none;
    }
}

/* CONTENT */
.dashboard-content {
    flex: 1;
    min-width: 0;
    padding: 40px;
}

/* CARD */
.dashboard-card {
    padding: 40px;
    border-radius: 28px;
}

/* HEADER */
.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 40px;
}

.dashboard-mini {
    display: inline-block;

    margin-bottom: 10px;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: .25em;

    color: var(--odish-red);
}

.dashboard-header h1 {
    font-size: 42px;
    font-weight: 900;

    letter-spacing: -2px;

    margin: 0;
}

/* PROFILE GRID */
.profile-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

/* AVATAR */
.profile-avatar-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
    border-radius: 24px;
    background: #fafafa;
    border: 1px solid var(--odish-border);
}

.profile-avatar-box > img {
    width: 100%;
    height: 340px;

    object-fit: cover;

    border-radius: 24px;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .08);
}

.profile-avatar-box .profile-photo {
    width: 180px;
}

.profile-avatar-content {
    position: relative;
    display: inline-flex;
}

.profile-avatar-box .profile-img,
.profile-avatar-box .settings-upload-img {
    width: 180px;
    height: 180px;
}

.profile-avatar-badge {
    position: absolute;
    right: -8px;
    bottom: -4px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.profile-avatar-badge:empty {
    display: none;
}

.profile-avatar-badge .user-badge,
.account-plan-badge .user-badge {
    min-width: 28px;
    min-height: 28px;
    width: 28px;
    height: 28px;
    padding: 0;
    justify-content: center;
    margin: 0;
    border-width: 3px;
    box-shadow: 0 8px 18px rgba(12, 16, 24, .24);
}

.profile-avatar-badge .user-badge i,
.account-plan-badge .user-badge i {
    font-size: 11px;
}

.profile-avatar-box .account-photo-vip {
    position: absolute;
    top: 16px;
    left: 16px;
}

/* INFOS */
.profile-infos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.profile-infos.artist-detail-three-cols {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.profile-status-grid {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.profile-status-card {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 96px;
    padding: 22px;
    border-radius: 20px;
    border: 1px solid rgba(229, 9, 20, .16);
    background: #fff6f7;
}

.profile-status-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 16px;
    background: #fff;
    color: var(--odish-red);
    box-shadow: 0 12px 28px rgba(229, 9, 20, .1);
}

.profile-status-card span:not(.profile-status-icon) {
    display: block;
    margin-bottom: 6px;
    color: var(--odish-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.profile-status-card strong {
    display: block;
    color: var(--odish-text);
    font-size: 18px;
    font-weight: 900;
}

/* INFO ITEM */
.profile-info-item {
    padding: 24px;

    border-radius: 20px;

    background: #fafafa;
    border: 1px solid var(--odish-border);
}

.account-plan-rights {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--odish-border);
}

.account-plan-rights-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.account-plan-rights-header h2 {
    margin: 4px 0 0;
    color: var(--odish-text);
    font-size: 24px;
    font-weight: 900;
}

.account-plan-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    min-height: 28px;
    padding: 0;
    border-radius: 999px;
    background: transparent;
    color: inherit;
}

.account-plan-badge-verified {
    background: transparent;
    color: inherit;
}

.account-plan-badge-premium {
    background: transparent;
    color: inherit;
}

.account-plan-badge:empty {
    display: none;
}

.account-plan-rights-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.account-plan-right {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--odish-border);
    border-radius: 16px;
    background: #fff;
}

.account-plan-right-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 50%;
    font-size: 12px;
}

.account-plan-right-icon.is-enabled {
    background: #eaf7ef;
    color: #167a3d;
}

.account-plan-right-icon.is-disabled {
    background: #fff1f2;
    color: var(--odish-red);
}

.account-plan-right span:not(.account-plan-right-icon) {
    display: block;
    color: var(--odish-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.account-plan-right strong {
    display: block;
    margin-top: 4px;
    color: var(--odish-text);
    font-size: 15px;
    font-weight: 900;
}

.profile-info-item span {
    display: block;

    font-size: 13px;
    font-weight: 700;

    color: var(--odish-muted);

    margin-bottom: 10px;

    text-transform: uppercase;
}

.profile-info-item strong {
    font-size: 18px;
    font-weight: 800;

    color: var(--odish-text);
}

.user-dropdown {
    position: relative;
}

.user-avatar-btn {
    width: 48px;
    height: 48px;
    padding: 0;
    border: 2px solid rgba(229, 9, 20, 0.12);
    border-radius: 50%;
    background: white;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s ease;
    flex: 0 0 48px;
}

.user-avatar-btn::after {
    display: none;
}

.user-avatar-btn:hover {
    transform: translateY(-2px);
    border-color: var(--odish-red);
    box-shadow: 0 12px 30px rgba(229, 9, 20, .15);
}

.user-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    display: block;
    flex: 0 0 auto;
}

.premium-user-menu {
    min-width: 220px;
    margin-top: 14px;
    padding: 10px;
    border: 1px solid var(--odish-border);
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,.12);
}

.premium-user-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    font-weight: 700;
    transition: .25s ease;
}

.premium-user-menu .dropdown-item:hover {
    background: #fff5f5;
    color: var(--odish-red);
}

.account-settings-section {
    padding: 80px 0;
    background: #f7f8fa;
}

.account-settings-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr;
    gap: 30px;
    align-items: start;
}

.account-form-card {
    padding: 40px;
    border-radius: 28px;
}

.account-form-header {
    margin-bottom: 34px;
}

.account-form-header span {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--odish-red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .28em;
}

.account-form-header h2 {
    font-size: 34px;
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 12px;
}

.account-form-header p {
    color: var(--odish-muted);
    line-height: 1.7;
    margin: 0;
}

.account-back-btn {
    margin-top: 22px;
}

.account-phone-field .iti {
    width: 100%;
    display: block;
}

.account-phone-field .iti__tel-input {
    width: 100%;
}

.account-profile-top {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 26px;
    margin-bottom: 28px;
}

.profile-photo {
    width: 150px;
    margin: 0;
    cursor: pointer;
}

.profile-img,
.settings-upload-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
}

.settings-upload-img img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 18px 38px rgba(17, 17, 17, .12);
}

.gender-choice {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 28px;
}

.account-profile-top .gender-choice {
    margin-bottom: 0;
}

.gender-option {
    position: relative;
    cursor: pointer;
}

.gender-option input {
    position: absolute;
    opacity: 0;
}

.gender-option span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 58px;
    padding: 14px 18px;
    border-radius: 18px;
    border: 1px solid var(--odish-border);
    background: #fbfbfc;
    color: var(--odish-text);
    font-weight: 800;
    transition: .3s ease;
}

.gender-option span i {
    font-size: 18px;
}

.gender-option input:checked + span,
.gender-option.active span {
    background: #fff1f2;
    color: var(--odish-red);
    border-color: rgba(229, 9, 20, .22);
    box-shadow: 0 12px 30px rgba(229, 9, 20, .08);
}

@media (max-width: 575.98px) {
    .account-profile-top {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .account-profile-top .gender-choice {
        width: 100%;
    }
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 800;
    color: var(--odish-text);
}

.premium-input {
    height: 62px;
    border-radius: 18px;
    border: 1px solid var(--odish-border);
    background: #fbfbfc;
    padding: 0 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--odish-text);
    box-shadow: none !important;
    transition: .3s ease;
}

.premium-input:focus {
    background: #fff;
    border-color: rgba(229, 9, 20, .35);
    box-shadow: 0 0 0 5px rgba(229, 9, 20, .06) !important;
}

.premium-input-muted,
.premium-input-muted:read-only {
    color: #7a7f89;
    background: #eef0f4;
    cursor: not-allowed;
}

.password-card {
    position: sticky;
    top: 120px;
}

@media(max-width: 992px) {
    body.dashboard-shell .page-ribbon {
        display: none !important;
    }

    .dashboard-layout {
        display: block;
        min-height: auto;
    }

    .dashboard-header {
        display: none !important;
    }

    .dashboard-sidebar {
        position: sticky;
        top: var(--navbar-height);
        z-index: 20;
        width: 100%;
        height: auto;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        padding: 14px 16px;
        overflow: visible;
        border-right: 0;
        border-bottom: 1px solid var(--odish-border);
    }

    .sidebar-item {
        width: 100%;
        min-width: 0;
        flex: none;
        padding: 13px 16px;
        border-radius: 14px;
        font-size: 14px;
        white-space: normal;
        line-height: 1.25;
    }

    .sidebar-group {
        min-width: 0;
    }

    .sidebar-badge {
        min-width: 20px;
        height: 20px;
        padding: 0 6px;
        font-size: 10px;
    }

    .sidebar-item:hover {
        transform: none;
    }

    .dashboard-content {
        padding: 28px 18px;
    }

    .account-settings-grid {
        grid-template-columns: 1fr;
    }

    .password-card {
        position: relative;
        top: auto;
    }
}

@media(max-width: 768px) {
    .dashboard-header,
    .profile-grid,
    .profile-status-grid,
    .account-plan-rights-grid,
    .profile-infos,
    .profile-infos.artist-detail-three-cols {
        grid-template-columns: 1fr;
    }

    .dashboard-card,
    .account-form-card {
        padding: 24px;
        border-radius: 22px;
    }

    .dashboard-header {
        display: grid;
        gap: 18px;
        margin-bottom: 28px;
    }

    .dashboard-header h1 {
        font-size: 30px;
        letter-spacing: 0;
        line-height: 1.15;
    }

    .dashboard-header .btn-primary-premium,
    .account-back-btn {
        width: 100%;
    }

    .profile-grid {
        gap: 24px;
    }

    .profile-avatar-box {
        min-height: 260px;
    }

    .profile-avatar-box > img {
        height: 280px;
    }

    .profile-avatar-box .profile-photo {
        width: 160px;
    }

    .profile-avatar-box .profile-img,
    .profile-avatar-box .settings-upload-img {
        width: 160px;
        height: 160px;
    }

    .profile-status-card,
    .profile-info-item,
    .account-plan-right {
        padding: 18px;
        border-radius: 16px;
    }

    .account-plan-rights-header {
        display: grid;
        align-items: start;
    }

    .profile-info-item strong,
    .profile-status-card strong {
        display: block;
        max-width: 100%;
        overflow-wrap: anywhere;
        font-size: 16px;
    }

    .account-profile-top {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .account-profile-top .gender-choice {
        width: 100%;
    }

    .account-settings-section {
        padding: 60px 0;
    }

    .account-form-header h2 {
        font-size: 28px;
    }

    .gender-choice {
        grid-template-columns: 1fr;
    }
}

.recruiter-candidates-page {
    padding: 42px 0;
}

.recruiter-candidates-shell {
    padding: 34px;
    border-radius: 30px;
}

.candidate-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 26px 0;
}

.candidate-stat-card {
    padding: 18px 20px;
    border-radius: 22px;
    background: #fafafa;
    border: 1px solid var(--odish-border);
}

.candidate-stat-card span {
    display: block;
    color: var(--odish-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.candidate-stat-card strong {
    display: block;
    margin-top: 6px;
    color: var(--odish-text);
    font-size: 30px;
    font-weight: 900;
}

.visibility-kpi-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.premium-upgrade-panel {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    margin-top: 26px;
    padding: 24px;
    border: 1px solid rgba(229, 9, 20, 0.16);
    border-radius: 22px;
    background: #fff7f8;
}

.premium-upgrade-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    color: #fff;
    background: var(--odish-red);
    font-size: 22px;
}

.premium-upgrade-panel span {
    display: block;
    color: var(--odish-red);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.premium-upgrade-panel h3 {
    margin: 4px 0 6px;
    color: var(--odish-text);
    font-size: 22px;
    font-weight: 900;
}

.premium-upgrade-panel p {
    margin: 0;
    color: var(--odish-muted);
    font-weight: 600;
    line-height: 1.6;
}

.visibility-stat-card small {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    color: var(--odish-muted);
    font-size: 12px;
    font-weight: 700;
}

.visibility-trend-up small,
.visibility-trend-up td:last-child {
    color: #159447;
}

.visibility-trend-down small,
.visibility-trend-down td:last-child {
    color: #c62828;
}

.visibility-trend-stable small,
.visibility-trend-stable td:last-child {
    color: var(--odish-muted);
}

.visibility-chart-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0;
}

.visibility-chart-button {
    border: 1px solid var(--odish-border);
    background: #fff;
    color: var(--odish-muted);
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 900;
}

.visibility-chart-button.active {
    background: var(--odish-red);
    border-color: var(--odish-red);
    color: #fff;
}

.visibility-chart-panel {
    display: none;
}

.visibility-chart-panel.active {
    display: block;
}

.visibility-chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    min-height: 260px;
    overflow-x: auto;
    padding: 18px 4px 8px;
}

.visibility-chart-item {
    display: flex;
    flex: 1 0 38px;
    min-width: 38px;
    height: 230px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.visibility-chart-value {
    color: var(--odish-muted);
    font-size: 11px;
    font-weight: 800;
    min-height: 16px;
}

.visibility-chart-track {
    position: relative;
    width: 100%;
    height: 160px;
    border-radius: 999px;
    background: #f1f1f1;
    overflow: hidden;
}

.visibility-chart-track span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    min-height: 4px;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(180deg, var(--odish-red-light), var(--odish-red));
}

.visibility-chart-label {
    color: var(--odish-muted);
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
}

.visibility-history-table-wrap {
    overflow-x: auto;
}

.visibility-history-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.visibility-history-table th,
.visibility-history-table td {
    padding: 14px 12px;
    border-bottom: 1px solid var(--odish-border);
    color: var(--odish-text);
    font-size: 14px;
    font-weight: 700;
    text-align: left;
}

.visibility-history-table th {
    color: var(--odish-muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.crm-analytics-page {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.crm-analytics-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.crm-analytics-hero h1 {
    margin: 6px 0;
    color: var(--odish-text);
    font-size: 34px;
    font-weight: 900;
}

.crm-analytics-hero p {
    margin: 0;
    color: var(--odish-muted);
    font-weight: 600;
}

.crm-analytics-filters {
    display: grid;
    grid-template-columns: minmax(160px, 1fr) repeat(2, minmax(140px, 1fr)) auto;
    gap: 10px;
    align-items: end;
    min-width: min(720px, 100%);
}

.crm-analytics-chart-grid,
.crm-analytics-tables-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.crm-analytics-chart-card,
.crm-analytics-table-card {
    padding: 24px;
}

.crm-analytics-chart-card .visibility-chart-bars {
    min-height: 220px;
}

.crm-analytics-chart-card .visibility-chart-item {
    height: 200px;
}

.visibility-history-table a {
    color: var(--odish-text);
    font-weight: 900;
    text-decoration: none;
}

.visibility-history-table a:hover {
    color: var(--odish-red);
}

@media (max-width: 1200px) {
    .visibility-kpi-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .crm-analytics-hero {
        align-items: stretch;
        flex-direction: column;
    }

    .crm-analytics-filters {
        min-width: 0;
    }
}

@media (max-width: 768px) {
    .visibility-kpi-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .premium-upgrade-panel {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .crm-analytics-filters,
    .crm-analytics-chart-grid,
    .crm-analytics-tables-grid {
        grid-template-columns: 1fr;
    }
}

.candidate-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.candidate-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.candidate-filter-tab {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--odish-border);
    color: var(--odish-text);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: .25s ease;
}

.candidate-filter-tab:hover,
.candidate-filter-tab.active {
    background: var(--odish-red);
    border-color: var(--odish-red);
    color: #fff;
}

.candidate-search-form {
    display: flex;
    gap: 10px;
    min-width: 360px;
}

.candidate-search-form input {
    width: 100%;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid var(--odish-border);
    background: #fff;
    color: var(--odish-text);
    font-weight: 700;
}

.candidate-list {
    display: grid;
    gap: 14px;
}

.candidate-list-row {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 18px;
    padding: 18px;
    border-radius: 24px;
}

.candidate-avatar {
    width: 76px;
    height: 76px;
    border-radius: 20px;
    overflow: hidden;
    background: #f4f4f4;
}

.candidate-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.candidate-info {
    min-width: 0;
}

.candidate-info h3 {
    margin: 0 0 6px;
    color: var(--odish-text);
    font-size: 20px;
    font-weight: 900;
}

.candidate-info h3 a {
    color: inherit;
    text-decoration: none;
}

.candidate-info p {
    margin: 0 0 8px;
    color: var(--odish-muted);
    font-size: 14px;
    font-weight: 700;
}

.candidate-info small {
    display: block;
    color: var(--odish-muted);
    font-size: 13px;
    line-height: 1.5;
}

.candidate-status {
    justify-self: end;
}

.candidate-actions {
    justify-self: end;
}

.candidate-pagination {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.candidate-pagination .pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.candidate-pagination .page-link {
    border: 1px solid var(--odish-border);
    border-radius: 999px;
    color: var(--odish-text);
    font-weight: 800;
}

.candidate-pagination .active .page-link {
    background: var(--odish-red);
    border-color: var(--odish-red);
}

@media(max-width: 992px) {
    .candidate-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .candidate-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .candidate-search-form {
        min-width: 0;
    }

    .candidate-list-row {
        grid-template-columns: 64px minmax(0, 1fr);
    }

    .candidate-status,
    .candidate-actions {
        justify-self: start;
        grid-column: 2;
    }
}

@media(max-width: 576px) {
    .recruiter-candidates-shell {
        padding: 22px;
        border-radius: 24px;
    }

    .candidate-stats-grid {
        grid-template-columns: 1fr;
    }

    .candidate-search-form {
        flex-direction: column;
    }

    .candidate-list-row {
        grid-template-columns: 1fr;
    }

    .candidate-avatar,
    .candidate-status,
    .candidate-actions {
        justify-self: start;
        grid-column: auto;
    }

    .candidate-actions .btn-secondary-premium {
        width: 100%;
    }
}

@media(max-width: 420px) {
    .dashboard-content {
        padding: 20px 12px;
    }

    .dashboard-card,
    .account-form-card {
        padding: 18px;
    }

    .dashboard-header h1 {
        font-size: 26px;
    }

    .profile-avatar-box {
        min-height: 220px;
    }

    .profile-avatar-box .profile-photo {
        width: 140px;
    }

    .profile-avatar-box .profile-img,
    .profile-avatar-box .settings-upload-img {
        width: 140px;
        height: 140px;
    }

    .account-form-header h2 {
        font-size: 24px;
        letter-spacing: 0;
    }

    .sidebar-item span {
        font-size: 13px;
    }

    .btn-primary-premium,
    .btn-secondary-premium {
        padding: 14px 18px;
    }
}

.artist-edit-section {
    background: transparent;
}

.artist-edit-section .container {
    max-width: none;
    padding: 0;
}

.artist-edit-card {
    padding: 40px;
    border-radius: 28px;
}

.artist-edit-header {
    max-width: 780px;
    margin-bottom: 34px;
}

.artist-edit-header span {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--odish-red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .28em;
}

.artist-edit-header h2 {
    font-size: 34px;
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin-bottom: 12px;
}

.artist-edit-header p {
    color: var(--odish-muted);
    line-height: 1.7;
    margin: 0;
}

.form-block {
    padding: 24px;
    border: 1px solid var(--odish-border);
    border-radius: 20px;
    background: #fafafa;
    margin-bottom: 20px;
}

.form-block h3 {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -.5px;
    margin-bottom: 22px;
    color: var(--odish-text);
}

.form-block label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 800;
    color: var(--odish-text);
}

.premium-input,
.premium-textarea {
    border-radius: 18px;
    border: 1px solid var(--odish-border);
    background: #fbfbfc;
    padding: 0 18px;
    font-size: 15px;
    font-weight: 600;
    color: var(--odish-text);
    box-shadow: none !important;
    transition: .3s ease;
}

.premium-input {
    height: 62px;
}

.premium-textarea {
    padding-top: 18px;
    min-height: 140px;
    resize: vertical;
}

.premium-input:focus,
.premium-textarea:focus {
    background: #fff;
    border-color: rgba(229, 9, 20, .35);
    box-shadow: 0 0 0 5px rgba(229, 9, 20, .06) !important;
}

.artist-edit-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

.artist-edit-footer .btn-primary-premium {
    min-width: 260px;
}

.artist-edit-card .btn-publish-premium,
.artist-edit-card .btn-draft-premium {
    width: 100%;
}

.profile-validation-shell {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.profile-validation-hero {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.profile-validation-hero .artist-edit-header {
    margin-bottom: 0;
}

.profile-validation-status {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    min-width: 230px;
    padding: 16px;
    border: 1px solid var(--odish-border);
    border-radius: 18px;
    background: #fff;
}

.profile-validation-status i {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #f4f4f5;
    color: var(--odish-text);
}

.profile-validation-status span,
.profile-validation-summary-item span,
.profile-validation-criterion-top span {
    display: block;
    color: var(--odish-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.profile-validation-status strong,
.profile-validation-summary-item strong {
    display: block;
    color: var(--odish-text);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.25;
}

.profile-validation-status.is-valid i,
.profile-validation-criterion.is-complete .profile-validation-criterion-top i {
    background: rgba(25, 135, 84, .1);
    color: #198754;
}

.profile-validation-status.is-submitted i {
    background: rgba(229, 9, 20, .1);
    color: var(--odish-red);
}

.profile-validation-progress-panel {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    padding: 24px;
    border: 1px solid var(--odish-border);
    border-radius: 24px;
    background: #fbfbfc;
}

.profile-validation-score {
    min-height: 142px;
    border-radius: 20px;
    background: #111;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.profile-validation-score strong {
    display: block;
    font-size: 44px;
    font-weight: 950;
    line-height: 1;
}

.profile-validation-score span {
    margin-top: 8px;
    color: rgba(255,255,255,.68);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.profile-validation-score.complete {
    background: #198754;
}

.profile-validation-progress-copy h3 {
    color: var(--odish-text);
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 8px;
}

.profile-validation-progress-copy p {
    max-width: 780px;
    color: var(--odish-muted);
    line-height: 1.7;
    margin: 0 0 18px;
}

.profile-validation-progress {
    width: 100%;
    height: 12px;
    overflow: hidden;
    border-radius: 999px;
    background: #ececef;
}

.profile-validation-progress div {
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: var(--odish-red);
    transition: width .45s ease;
}

.profile-validation-summary {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.profile-validation-summary-item {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-height: 86px;
    padding: 18px;
    border: 1px solid var(--odish-border);
    border-radius: 18px;
    background: #fff;
}

.profile-validation-summary-item i {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(229, 9, 20, .08);
    color: var(--odish-red);
}

.profile-validation-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.profile-validation-actions .btn-primary-premium,
.profile-validation-actions .btn-secondary-premium {
    min-height: 56px;
}

.profile-validation-actions .btn-secondary-premium.disabled {
    opacity: .72;
    cursor: not-allowed;
}

.profile-validation-criteria-section {
    position: relative;
    z-index: 1;
    padding-top: 6px;
}

.profile-validation-criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.profile-validation-criterion {
    min-height: 158px;
    padding: 18px;
    border: 1px solid var(--odish-border);
    border-radius: 18px;
    background: #fff;
}

.profile-validation-criterion.is-missing {
    border-color: rgba(229, 9, 20, .22);
    background: #fff8f8;
}

.profile-validation-criterion-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 16px;
}

.profile-validation-criterion-top i {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(229, 9, 20, .09);
    color: var(--odish-red);
}

.profile-validation-criterion strong {
    display: block;
    color: var(--odish-text);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 8px;
}

.profile-validation-criterion p {
    color: var(--odish-muted);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.55;
    margin: 0;
    overflow-wrap: anywhere;
}

@media(max-width: 768px) {

    .artist-edit-card {
        padding: 24px;
        border-radius: 22px;
        margin-top: 80px;
    }

    .artist-edit-header {
        margin-bottom: 28px;
    }

    .artist-edit-header h2 {
        font-size: 28px;
        letter-spacing: 0;
    }

    .form-block {
        padding: 18px;
        border-radius: 16px;
    }

    .artist-edit-footer {
        justify-content: stretch;
    }

    .artist-edit-footer .btn-primary-premium {
        width: 100%;
    }

    .profile-validation-hero,
    .profile-validation-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .profile-validation-status {
        width: 100%;
        min-width: 0;
    }

    .profile-validation-progress-panel,
    .profile-validation-summary {
        grid-template-columns: 1fr;
    }

    .profile-validation-score {
        min-height: 120px;
    }

    .profile-validation-actions .btn-primary-premium,
    .profile-validation-actions .btn-secondary-premium {
        width: 100%;
    }
}

@media(max-width: 420px) {
    .artist-edit-card {
        padding: 18px;
    }

    .artist-edit-header h2 {
        font-size: 24px;
    }

    .profile-validation-progress-panel,
    .profile-validation-summary-item,
    .profile-validation-criterion {
        padding: 16px;
    }

    .profile-validation-score strong {
        font-size: 38px;
    }

    .form-block h3 {
        font-size: 18px;
    }
}

.vip-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #e50914,
        #ff4d5a
    );

    color: #fff;

    border: 2px solid #fff;

    box-shadow:
        0 6px 16px rgba(229,9,20,.35);

    margin-left: 6px;
}

.vip-badge i {
    font-size: 10px;
}

.user-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 24px;
    padding: 4px 9px;
    border-radius: 999px;
    border: 2px solid #fff;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 6px 16px rgba(0,0,0,.14);
    white-space: nowrap;
}

.user-badge i {
    font-size: 10px;
}

.user-badge--premium {
    background: linear-gradient(135deg, #111111, #2b2412 48%, #d4af37);
    color: #fff8dc;
    border-color: #f3d675;
    box-shadow: 0 8px 20px rgba(17,17,17,.28), 0 0 0 3px rgba(212,175,55,.14);
}

.user-badge--verified {
    background: linear-gradient(135deg, #0d6efd, #4dabf7);
    box-shadow: 0 6px 16px rgba(13,110,253,.28);
}

.recruiter-auditions-page {
    padding: 0px 0;
    width: 100%;
    min-width: 0;
}

.recruiter-auditions-card {
    padding: 36px;
    border-radius: 32px;
    min-width: 0;
}

.recruiter-auditions-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 34px;
}

.recruiter-auditions-header span {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--odish-red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .28em;
}

.recruiter-auditions-header h2 {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 10px;
}

.recruiter-auditions-header p {
    color: var(--odish-muted);
    margin: 0;
    line-height: 1.7;
}

.audition-list-premium {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.audition-directory-layout {
    display: grid;
    grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.audition-search-sidebar {
    position: sticky;
    top: calc(var(--navbar-height) + 18px);
    z-index: 20;
}

.audition-directory-results {
    min-width: 0;
}

.audition-search-panel {
    max-height: calc(100vh - var(--navbar-height) - 36px);
    margin: 0;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid var(--odish-border);
    background: #fff;
    overflow-y: auto;
}

.audition-search-panel label {
    display: block;
    margin: 0 0 5px;
    color: var(--odish-text);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.audition-search-main {
    margin-bottom: 12px;
}

.audition-matching-filter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 12px;
    padding: 9px 10px;
    border: 1px solid rgba(229, 9, 20, 0.16);
    border-radius: 14px;
    background: rgba(229, 9, 20, 0.05);
}

.audition-matching-filter span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--odish-text);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.audition-matching-filter i {
    color: var(--odish-red);
}

.audition-matching-filter a {
    color: var(--odish-red);
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
}

.audition-search-input-wrap {
    position: relative;
}

.audition-search-input-wrap i {
    position: absolute;
    left: 14px;
    top: 50%;
    z-index: 2;
    color: var(--odish-red);
    transform: translateY(-50%);
}

.audition-search-input-wrap .premium-input {
    padding-left: 38px;
}

.audition-search-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.audition-search-field {
    min-width: 0;
}

.audition-domain-tiles {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    padding: 3px 2px 7px;
    border: 0;
    overflow-x: auto;
    scrollbar-width: thin;
}

.audition-domain-tile {
    --domain-color: var(--odish-red);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex: 0 0 auto;
    min-width: 112px;
    min-height: 34px;
    padding: 4px 8px;
    border: 1px solid rgba(0,0,0,.08);
    border-left: 4px solid var(--domain-color);
    border-radius: 10px;
    color: var(--domain-color);
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,.05);
    appearance: none;
    cursor: pointer;
    text-align: left;
    text-decoration: none;
    font-size: 9px;
    font-weight: 800;
    line-height: 1.15;
    transition: .2s ease;
}

.audition-domain-tile:hover,
.audition-domain-tile.is-active {
    color: #fff;
    background: var(--domain-color);
    border-color: var(--domain-color);
    transform: translateY(-1px);
}

.audition-domain-tile:focus-visible {
    outline: 3px solid rgba(229, 9, 20, .22);
    outline-offset: 3px;
}

.audition-domain-tile-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    color: #fff;
    background: var(--domain-color);
}

.audition-domain-tile:hover .audition-domain-tile-icon,
.audition-domain-tile.is-active .audition-domain-tile-icon {
    color: var(--domain-color);
    background: #fff;
}

.audition-domain-tile-content {
    max-width: 92px;
    overflow-wrap: anywhere;
}

.audition-domain-tile-icon i {
    font-size: 10px;
}

.domain-results-summary {
    margin: 0 0 14px;
}

.domain-results-summary h2 {
    margin: 0;
    color: var(--odish-text);
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0;
}

.audition-search-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
}

.audition-search-actions .btn-primary-premium,
.audition-search-actions .btn-secondary-premium {
    display: inline-flex;
    width: 100%;
    min-height: 38px;
    padding: 9px 12px;
    border-radius: 10px;
    font-size: 13px;
    justify-content: center;
    white-space: nowrap;
}

.audition-search-actions .btn-secondary-premium {
    text-decoration: none;
}

.audition-row-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(150px, 210px) minmax(0, 1fr) minmax(118px, 138px);
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 16px;
    padding: 12px;
    border: 1px solid var(--odish-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 45px rgba(0,0,0,.045);
    transition: .3s ease;
}

.audition-detail-card.audition-row-card {
    grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
    gap: 16px;
    padding: 14px;
    border-radius: 22px;
}

.audition-row-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 70px rgba(0,0,0,.08);
    border-color: rgba(229,9,20,.18);
}

.audition-row-card.is-removing {
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
}

.audition-row-media {
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.audition-row-media > a:not(.recruteur-profile-link) {
    position: relative;
    display: block;
    height: 150px;
    border-radius: 16px;
    overflow: hidden;
    background: #f7f8fa;
}

.audition-detail-media-frame {
    position: relative;
    display: block;
    height: 160px;
    border-radius: 18px;
    overflow: hidden;
    background: #f7f8fa;
}

.audition-row-media img,
.audition-row-placeholder {
    width: 100%;
    height: 100%;
    display: block;
}

.audition-row-media img {
    object-fit: cover;
}

.audition-new-badge {
    top: 10px;
    left: 10px;
    max-width: calc(100% - 20px);
    padding: 7px 9px;
    border-radius: 10px;
    font-size: 10px;
    line-height: 1.2;
    color: var(--odish-text);
    box-shadow: 0 14px 35px rgba(0,0,0,.16);
}

.audition-row-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--odish-muted);
    font-size: 36px;
}

.status-badge-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(17,17,17,.78);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
    line-height: 1.1;
    white-space: nowrap;
}

.status-badge-premium.status-badge--success {
    background: rgba(0,166,81,.12);
    color: #087f3d;
}

.status-badge-premium.bg-success {
    background: #087f3d;
    color: #fff;
}

.status-badge-premium.status-badge--warning,
.status-badge-premium.bg-warning {
    background: rgba(255,153,0,.14);
    color: #9a5a00;
}

.status-badge-premium.status-badge--dark {
    background: rgba(17,17,17,.78);
    color: #fff;
}

.status-badge-premium.bg-danger {
    background: #eef1f5;
    color: var(--odish-text);
}

.status-badge-premium.status-badge--danger {
    background: rgba(229,9,20,.12);
    color: var(--odish-red);
}

.status-badge-premium.bg-primary,
.status-badge-premium.bg-info {
    background: rgba(13,110,253,.10);
    color: #0d6efd;
}

.audition-row-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    padding: 6px 0;
}

.audition-row-main h3 {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -.6px;
    margin-bottom: 7px;
    min-width: 0;
}

.audition-detail-card .audition-row-main h1 {
    color: var(--odish-text);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -.6px;
    line-height: 1.2;
    margin-bottom: 8px;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.audition-row-main .status-badge-premium {
    margin-bottom: 8px;
}

.audition-row-main h3 a {
    color: var(--odish-text);
    text-decoration: none;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.audition-row-main h3 a:hover {
    color: var(--odish-red);
}

.audition-row-main p {
    color: var(--odish-muted);
    line-height: 1.35;
    margin-bottom: 9px;
    font-size: 13px;
    overflow: hidden;
    overflow-wrap: anywhere;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.audition-tags-premium {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag-premium {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
}

.tag-domain {
    color: var(--domain-color, var(--odish-red));
    background: #fff;
    border: 1px solid var(--domain-color, var(--odish-red));
}

.tag-success {
    background: rgba(0,166,81,.08);
    color: #00a651;
}

.tag-danger {
    background: rgba(229,9,20,.08);
    color: var(--odish-red);
}

.tag-warning {
    background: rgba(255,153,0,.10);
    color: #b96b00;
}

.tag-info {
    background: rgba(0,123,255,.08);
    color: #0d6efd;
}

.tag-neutral {
    background: #f1f1f1;
    color: #777;
}

.audition-row-recruiter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--odish-muted);
    font-size: 11px;
    font-weight: 700;
    text-align: center;
}

.audition-row-recruiter > span {
    flex: 0 0 auto;
}

.audition-row-recruiter .recruteur-profile-link {
    margin-top: 0;
}

.recruteur-profile-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    color: var(--odish-text);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.recruteur-profile-link i {
    color: var(--odish-red);
}

.recruteur-profile-link:hover {
    color: var(--odish-red);
}

.audition-meta-premium {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 10px;
    margin-top: 8px;
}

.audition-meta-premium div,
.audition-meta-premium .profile-meta-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--odish-muted);
    font-size: 12px;
    font-weight: 600;
}

.audition-meta-premium i {
    color: var(--odish-red);
    width: 16px;
}

.audition-row-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.audition-row-actions-stack {
    grid-column: 3;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.audition-row-view-count {
    grid-column: 3;
    grid-row: 2;
    align-self: end;
}

.audition-detail-view-count {
    position: absolute;
    right: 18px;
    bottom: 14px;
}

.audition-row-actions-stack .audition-row-actions {
    width: 100%;
}

.audition-favorite-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    min-height: 36px;
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 12px;
    white-space: normal;
    text-align: center;
}

.audition-favorite-action.is-active {
    border-color: rgba(229, 9, 20, .28);
    background: rgba(229, 9, 20, .08);
    color: var(--odish-red);
}

.audition-favorite-action.is-active i {
    color: var(--odish-red);
}

.audition-favorite-action.is-loading {
    opacity: .75;
}

.btn-edit-premium,
.btn-publish-premium,
.btn-draft-premium,
.btn-delete-premium {
    width: 100%;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: .3s ease;
}

.btn-edit-premium {
    background: #fff1f2;
    color: var(--odish-red);
    border: 1px solid rgba(229,9,20,.16);
}

.btn-edit-premium:hover {
    background: var(--odish-red);
    color: #fff;
}

.btn-publish-premium {
    background: rgba(0,166,81,.08);
    color: #008a43;
    border: 1px solid rgba(0,166,81,.18);
}

.btn-publish-premium:hover {
    background: #008a43;
    color: #fff;
}

.btn-draft-premium {
    background: rgba(255,153,0,.10);
    color: #b96b00;
    border: 1px solid rgba(255,153,0,.22);
}

.btn-draft-premium:hover {
    background: #b96b00;
    color: #fff;
}

.btn-delete-premium {
    background: #fff;
    color: #dc3545;
    border: 1px solid rgba(220,53,69,.22);
}

.btn-delete-premium:hover {
    background: #dc3545;
    color: #fff;
}

.audition-empty-premium {
    padding: 70px 30px;
    text-align: center;
    border: 1px dashed rgba(229,9,20,.25);
    border-radius: 28px;
    background: #fffafa;
}

.audition-empty-premium div {
    width: 76px;
    height: 76px;
    margin: 0 auto 20px;
    border-radius: 24px;
    background: #fff1f2;
    color: var(--odish-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.audition-empty-premium h3 {
    font-weight: 900;
    margin-bottom: 10px;
}

.audition-empty-premium p {
    color: var(--odish-muted);
    margin-bottom: 24px;
}

@media(max-width: 992px) {
    .recruiter-auditions-header {
        flex-direction: column;
    }

    .audition-directory-layout {
        display: block;
    }

    .audition-search-sidebar {
        top: calc(var(--navbar-height) + 8px);
        margin-bottom: 22px;
    }

    .audition-row-card {
        grid-template-columns: 220px 1fr;
        grid-template-rows: auto auto auto;
    }

    .audition-row-media {
        grid-row: auto;
    }

    .audition-row-actions,
    .audition-row-actions-stack {
        grid-column: 1 / -1;
        grid-row: auto;
        flex-direction: row;
    }

    .audition-row-view-count {
        grid-column: 1 / -1;
        grid-row: auto;
    }
}

@media(max-width: 768px) {
    .recruiter-auditions-page {
    padding: 80px 0;
}
    .recruiter-auditions-card {
        padding: 24px;
        border-radius: 26px;
    }

    .recruiter-auditions-header h2 {
        font-size: 32px;
    }

    .audition-search-sidebar {
        top: calc(var(--navbar-height) + 6px);
    }

    .audition-search-panel {
        max-height: calc(100vh - var(--navbar-height) - 12px);
        padding: 12px;
        border-radius: 16px;
        box-shadow: 0 16px 38px rgba(0, 0, 0, .08);
    }

    .audition-search-panel label {
        margin-bottom: 5px;
        font-size: 10px;
    }

    .audition-search-main {
        margin-bottom: 10px;
    }

    .audition-search-input-wrap i {
        left: 13px;
        font-size: 12px;
    }

    .audition-search-input-wrap .premium-input {
        padding-left: 36px;
    }

    .audition-search-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .audition-search-panel .premium-input {
        height: 36px;
        min-height: 36px;
        padding-top: 6px;
        padding-bottom: 6px;
        font-size: 12px;
    }

    .audition-search-actions {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .audition-search-actions .btn-primary-premium,
    .audition-search-actions .btn-secondary-premium {
        min-height: 34px;
        padding: 7px 9px;
        font-size: 12px;
        justify-content: center;
    }

    .audition-row-card {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        padding: 14px;
    }

    .audition-detail-card.audition-row-card {
        grid-template-columns: 1fr;
    }

    .audition-row-media {
        height: 220px;
    }

    .audition-detail-card .audition-row-media {
        height: auto;
    }

    .audition-detail-media-frame {
        height: 180px;
    }

    .audition-meta-premium {
        grid-template-columns: 1fr;
    }

    .audition-details-page .audition-detail-section {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 10px;
        padding: 12px;
    }

    .audition-detail-section-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .audition-detail-section-heading {
        align-items: flex-start;
    }

    .audition-details-page .criteria-grid,
    .audition-details-page .recruiter-box {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .audition-details-page .criteria-item {
        min-height: 0;
        grid-template-columns: 24px minmax(0, 1fr);
        gap: 8px;
        padding: 7px 0;
        border: 0;
        border-bottom: 1px solid var(--odish-border);
        border-radius: 0;
        box-shadow: none;
        font-size: 13px;
    }

    .audition-details-page .criteria-item:last-child {
        border-bottom: 0;
    }

    .audition-details-page .criteria-item i,
    .audition-details-page .recruiter-info-item > i {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }

    .audition-details-page .recruiter-info-item {
        display: grid;
        grid-template-columns: 24px minmax(0, 1fr);
        column-gap: 8px;
        padding: 7px 0;
        margin-right: 0;
        border-right: 0;
        border-bottom: 1px solid var(--odish-border);
    }

    .audition-details-page .recruiter-info-item:last-child {
        border-bottom: 0;
    }

    .audition-details-page .recruiter-info-item > i {
        grid-row: 1 / 3;
        margin-bottom: 0;
    }

    .audition-details-page .recruiter-box span {
        margin-bottom: 3px;
        font-size: 12px;
    }

    .audition-details-page .recruiter-box strong,
    .audition-details-page .recruiter-box .recruteur-profile-link {
        font-size: 13px;
    }

    .audition-row-actions,
    .audition-row-actions-stack {
        flex-direction: column;
    }

    .audition-details-page .audition-actions {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        gap: 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .audition-details-page .audition-actions .btn-primary-premium,
    .audition-details-page .audition-actions .btn-secondary-premium,
    .audition-details-page .audition-actions .audition-favorite-action,
    .audition-details-page .audition-actions .application-status {
        width: auto;
        min-height: 34px;
        padding: 7px 10px;
        border-radius: 8px;
        font-size: 13px;
        flex: 0 0 auto;
    }

    .audition-row-view-count {
        font-size: 16px;
    }

    .audition-detail-view-count {
        position: static;
        justify-content: flex-end;
        margin-top: 12px;
    }

    .audition-row-view-count i {
        font-size: 20px;
    }
}

.audition-form-premium {
    padding: 0;
}

.audition-form-card {
    padding: 36px;
    border-radius: 32px;
}

.audition-form-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 42px;
}

.audition-form-header > div {
    max-width: 780px;
}

.audition-form-header span,
.form-section-title span {
    display: inline-block;
    color: var(--odish-red);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .28em;
}

.audition-form-header span {
    margin-bottom: 12px;
}

.audition-form-header h2 {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 10px;
}

.audition-form-header p {
    color: var(--odish-muted);
    line-height: 1.7;
    margin: 0;
}

.form-section-premium {
    padding: 30px;
    border: 1px solid var(--odish-border);
    border-radius: 28px;
    background: #fff;
    margin-bottom: 26px;
    box-shadow: 0 14px 45px rgba(0,0,0,.035);
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.form-section-title span {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #fff1f2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
}

.form-section-title h3 {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -.7px;
    margin: 0;
}

.audition-form-premium label {
    display: block;
    margin-bottom: 10px;
    color: var(--odish-text);
    font-size: 14px;
    font-weight: 800;
}

.premium-input,
.premium-textarea,
.premium-input-file {
    border-radius: 18px;
    border: 1px solid var(--odish-border);
    background: #fbfbfc;
    color: var(--odish-text);
    font-size: 15px;
    font-weight: 600;
    box-shadow: none !important;
    transition: .3s ease;
}

.premium-input {
    height: 62px;
    padding: 0 18px;
}

.premium-textarea {
    padding: 18px;
    min-height: 150px;
}

.premium-input-file {
    padding: 17px 18px;
}

.premium-input:focus,
.premium-textarea:focus,
.premium-input-file:focus {
    background: #fff;
    border-color: rgba(229, 9, 20, .35);
    box-shadow: 0 0 0 5px rgba(229, 9, 20, .06) !important;
}

.choice-group-premium {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.choice-pill {
    position: relative;
    cursor: pointer;
    margin: 0;
}

.choice-pill input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.choice-pill span {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--odish-border);
    background: #fbfbfc;
    color: var(--odish-text);
    font-size: 13px;
    font-weight: 800;
    transition: .25s ease;
}

.choice-pill input:checked + span {
    background: #fff1f2;
    color: var(--odish-red);
    border-color: rgba(229, 9, 20, .25);
    box-shadow: 0 10px 28px rgba(229, 9, 20, .08);
}

.range-input-premium {
    height: 62px;
    display: grid;
    grid-template-columns: auto 1fr auto 1fr auto;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--odish-border);
    border-radius: 18px;
    background: #fbfbfc;
}

.range-input-premium span {
    height: 100%;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: var(--odish-muted);
    font-size: 13px;
    font-weight: 800;
    border-right: 1px solid var(--odish-border);
}

.range-input-premium span:nth-of-type(2),
.range-input-premium span:nth-of-type(3) {
    border-left: 1px solid var(--odish-border);
}

.range-input-premium .form-control {
    height: 100%;
    border: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none !important;
    font-weight: 700;
    min-width: 0;
}

.audition-form-footer {
    position: sticky;
    bottom: 20px;
    z-index: 5;
    display: flex;
    justify-content: flex-end;
    padding: 18px;
    border: 1px solid var(--odish-border);
    border-radius: 24px;
    background: rgba(255,255,255,.86);
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 70px rgba(0,0,0,.08);
}

.audition-form-footer .btn-primary-premium {
    min-width: 260px;
}

.audition-form-premium .iti {
    width: 100%;
    z-index: 20;
}

.audition-form-premium .iti__dropdown-content {
    z-index: 1000;
}

.audition-form-premium .iti__tel-input {
    width: 100%;
}

.audition-edit-image {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.audition-edit-image img {
    width: 220px;
    height: 160px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid var(--odish-border);
    background: #fbfbfc;
}

.note-editor.note-frame {
    border: 1px solid var(--odish-border) !important;
    border-radius: 18px !important;
    overflow: hidden;
    box-shadow: none !important;
}

.note-toolbar {
    background: #fbfbfc !important;
    border-bottom: 1px solid var(--odish-border) !important;
}

.note-editable {
    min-height: 180px;
    font-family: Inter, sans-serif;
    color: var(--odish-text);
}

@media(max-width: 768px) {
    .audition-form-premium {
        padding: 24px 0;
    }

    .audition-form-header {
        flex-direction: column;
    }

    .audition-form-header .btn-secondary-premium {
        width: 100%;
    }

    .audition-form-card {
        padding: 24px;
        border-radius: 26px;
    }

    .form-section-premium {
        padding: 22px;
        border-radius: 22px;
    }

    .form-section-title {
        align-items: flex-start;
    }

    .audition-form-footer {
        position: static;
        justify-content: stretch;
    }

    .audition-form-footer .btn-primary-premium {
        width: 100%;
        min-width: auto;
    }

    .range-input-premium {
        height: auto;
        grid-template-columns: 1fr;
    }

    .range-input-premium span {
        height: 42px;
        border-right: 0;
        border-left: 0 !important;
        border-bottom: 1px solid var(--odish-border);
    }

    .range-input-premium .form-control {
        height: 54px;
    }
}


/* STATUS */
.audition-card__status--overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}

.status-badge {
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}

.status-badge.status-badge--success {
  background: #22c55e;
  color: #fff;
}

.status-badge.status-badge--dark {
  background: #6b7280;
  color: #fff;
}

.status-badge.status-badge--warning {
  background: #f59e0b;
  color: #fff;
}


.application-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 14px 24px;

    border-radius: 16px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;
    transition: all .3s ease;
}

.application-status.applied {
    background: rgba(16, 185, 129, 0.08);
    color: #059669;

    border: 1px solid rgba(16, 185, 129, 0.15);

    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.08);
}

.application-status.applied:hover {
    background: rgba(16, 185, 129, 0.12);
    color: #047857;

    transform: translateY(-2px);

    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.12);
}

.application-status.applied i {
    font-size: 18px;
}

.candidature-status-card {
    padding: 40px;
    border-radius: 32px;
    margin-top: 30px;
}

.candidature-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 36px;
}

.candidature-icon {
    width: 82px;
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 24px;

    background: #fff5f5;
    color: var(--odish-red);

    font-size: 34px;
}

.candidature-header-content span {
    display: inline-block;

    margin-bottom: 8px;

    color: var(--odish-red);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: .25em;
}

.candidature-header-content h2 {
    font-size: 34px;
    font-weight: 900;

    letter-spacing: -1px;

    margin-bottom: 10px;
}

.candidature-header-content p {
    margin: 0;

    color: var(--odish-muted);
}

.candidature-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;

    margin-bottom: 36px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 18px;

    padding: 24px;

    border-radius: 24px;

    background: #fafafa;

    border: 1px solid var(--odish-border);
}

.meta-item i {
    width: 56px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: #fff;

    color: var(--odish-red);

    font-size: 22px;
}

.meta-item small {
    display: block;

    margin-bottom: 6px;

    color: var(--odish-muted);

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
}

.meta-item strong {
    font-size: 15px;
    font-weight: 800;
}

.status-pill {
    display: inline-flex;

    padding: 8px 14px;

    border-radius: 999px;

    font-size: 13px;
}

.status-pill.status-en_attente {
    background: rgba(255, 193, 7, .12);
    color: #b58100;
}

.status-pill.status-vue {
    background: rgba(13, 110, 253, .12);
    color: #0d6efd;
}

.status-pill.status-preselectionnee {
    background: rgba(102, 16, 242, .12);
    color: #6610f2;
}

.status-pill.status-entretien {
    background: rgba(13, 202, 240, .14);
    color: #087990;
}

.status-pill.status-retenue {
    background: rgba(25, 135, 84, .12);
    color: #198754;
}

.status-pill.status-refusee {
    background: rgba(220, 53, 69, .12);
    color: #dc3545;
}

.status-pill.status-retiree {
    background: rgba(108, 117, 125, .14);
    color: #6c757d;
}

.status-pill.status-active {
    background: rgba(25, 135, 84, .12);
    color: #198754;
}

.status-pill.status-desinscrit {
    background: rgba(108, 117, 125, .14);
    color: #6c757d;
}

.premium-message-box {
    margin-top: 24px;

    padding: 28px;

    border-radius: 24px;

    background: #fafafa;

    border: 1px solid var(--odish-border);
}

.box-title {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 20px;

    font-size: 18px;
    font-weight: 800;
}

.box-title i {
    color: var(--odish-red);
}

.box-content {
    color: var(--odish-text);

    line-height: 1.9;
}

.empty-content {
    color: var(--odish-muted);

    font-style: italic;
}

.recruiter-feedback {
    border-color: rgba(229, 9, 20, .12);

    background: linear-gradient(
        135deg,
        #fff,
        #fff7f7
    );
}

@media(max-width: 992px) {

    .candidature-meta-grid {
        grid-template-columns: 1fr;
    }

}

@media(max-width: 768px) {

    .candidature-status-card {
        padding: 28px;
        margin-top: 15px;
    }

    .candidature-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .candidature-header-content h2 {
        font-size: 28px;
    }

}

.candidature-form-card {
    padding: 36px;
    border-radius: 32px;
}

.candidature-form-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.candidature-form-icon {
    width: 68px;
    height: 68px;
    flex-shrink: 0;
    border-radius: 22px;
    background: #fff1f2;
    color: var(--odish-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.candidature-form-header span {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--odish-red);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .25em;
}

.candidature-form-header h2 {
    font-size: 34px;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.candidature-form-header p {
    color: var(--odish-muted);
    line-height: 1.7;
    margin: 0;
}

.candidature-form-card label {
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 800;
    color: var(--odish-text);
}

.candidature-textarea {
    min-height: 180px;
    padding: 18px 20px;
    border-radius: 22px;
    border: 1px solid var(--odish-border);
    background: #fbfbfc;
    color: var(--odish-text);
    font-size: 15px;
    line-height: 1.7;
    box-shadow: none !important;
    resize: vertical;
    transition: .3s ease;
}

.candidature-textarea:focus {
    background: #fff;
    border-color: rgba(229, 9, 20, .35);
    box-shadow: 0 0 0 5px rgba(229, 9, 20, .06) !important;
}

.candidature-form-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 24px;
}

@media(max-width: 768px) {
    .candidature-form-card {
        padding: 26px;
        border-radius: 26px;
    }

    .candidature-form-header {
        flex-direction: column;
    }

    .candidature-form-header h2 {
        font-size: 28px;
    }

    .candidature-form-footer {
        justify-content: stretch;
    }

    .candidature-form-footer .btn-primary-premium {
        width: 100%;
    }
}

.recruiter-candidates-page {
    padding: 0px 0;
}

.recruiter-candidates-shell {
    padding: 34px;
    border-radius: 32px;
}

.candidate-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 160px));
    gap: 14px;
    justify-content: flex-start;
    margin: 28px 0;
}

.candidate-stat-card {
    padding: 16px 18px;
    border-radius: 20px;
    background: #fff1f2;
    border: 1px solid rgba(229, 9, 20, .12);
    box-shadow: 0 12px 35px rgba(229, 9, 20, .06);
}

.candidate-stat-card span {
    display: block;
    margin-bottom: 6px;
    color: var(--odish-muted);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.candidate-stat-card strong {
    display: block;
    color: var(--odish-red);
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
}

.candidate-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 18px;
    margin-bottom: 24px;
    border-radius: 24px;
    background: #fafafa;
    border: 1px solid var(--odish-border);
}

.candidate-filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.candidate-filter-tab {
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--odish-border);
    color: var(--odish-text);
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    transition: .25s ease;
}

.candidate-filter-tab:hover,
.candidate-filter-tab.active {
    background: var(--odish-red);
    border-color: var(--odish-red);
    color: #fff;
    box-shadow: 0 10px 25px rgba(229,9,20,.18);
}

.candidate-search-form {
    display: flex;
    gap: 10px;
    min-width: 360px;
}

.candidate-search-form input {
    height: 46px;
    flex: 1;
    border-radius: 999px;
    border: 1px solid var(--odish-border);
    background: #fff;
    padding: 0 18px;
    font-size: 14px;
    font-weight: 700;
    outline: none;
    transition: .25s ease;
}

.candidate-search-form input:focus {
    border-color: rgba(229,9,20,.35);
    box-shadow: 0 0 0 5px rgba(229,9,20,.06);
}

.candidate-search-form .btn-secondary-premium {
    height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    white-space: nowrap;
}

.candidate-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.candidate-list-row {
    display: grid;
    grid-template-columns: 72px 1fr auto 140px;
    align-items: center;
    gap: 18px;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid var(--odish-border);
    background: #fff;
    box-shadow: 0 12px 40px rgba(0,0,0,.04);
    transition: .28s ease;
}

.candidate-list-row:hover {
    transform: translateY(-3px);
    border-color: rgba(229,9,20,.18);
    box-shadow: 0 22px 60px rgba(0,0,0,.075);
}

.candidate-avatar {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    overflow: hidden;
    background: #f3f4f6;
    flex-shrink: 0;
}

.candidate-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.candidate-info {
    min-width: 0;
}

.candidate-info h3 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -.3px;
}

.candidate-info h3 a {
    color: var(--odish-text);
    text-decoration: none;
}

.candidate-info h3 a:hover {
    color: var(--odish-red);
}

.candidate-info p {
    margin: 0 0 6px;
    color: var(--odish-muted);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
}

.candidate-info small {
    display: block;
    max-width: 740px;
    color: #555;
    font-size: 13px;
    line-height: 1.55;
}

.candidate-status {
    display: flex;
    justify-content: center;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}

.status-pill.status-en_attente {
    background: rgba(255, 193, 7, .13);
    color: #a36b00;
}

.status-pill.status-acceptee {
    background: rgba(25, 135, 84, .12);
    color: #198754;
}

.status-pill.status-refusee {
    background: rgba(220, 53, 69, .12);
    color: #dc3545;
}

.candidate-actions .btn-secondary-premium {
    width: 100%;
    min-height: 44px;
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 13px;
    white-space: nowrap;
}

.candidate-pagination {
    margin-top: 28px;
    display: flex;
    justify-content: center;
}

.candidate-pagination .pagination {
    gap: 8px;
}

.candidate-pagination .page-link {
    border: 1px solid var(--odish-border);
    border-radius: 12px;
    color: var(--odish-text);
    font-weight: 800;
    box-shadow: none;
}

.candidate-pagination .page-item.active .page-link {
    background: var(--odish-red);
    border-color: var(--odish-red);
}

@media(max-width: 1100px) {
    .candidate-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .candidate-search-form {
        min-width: 0;
        width: 100%;
    }

    .candidate-list-row {
        grid-template-columns: 72px 1fr;
    }

    .candidate-status,
    .candidate-actions {
        grid-column: 2 / -1;
        justify-content: flex-start;
    }

    .candidate-actions {
        max-width: 220px;
    }
}

@media(max-width: 768px) {

    .recruiter-candidates-page {
        padding: 80px 0;
    }

    .recruiter-candidates-shell {
        padding: 22px;
        border-radius: 26px;
    }

    .candidate-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .candidate-stat-card {
        padding: 14px;
    }

    .candidate-toolbar {
        padding: 14px;
        border-radius: 20px;
    }

    .candidate-search-form {
        flex-direction: column;
    }

    .candidate-search-form .btn-secondary-premium {
        width: 100%;
    }

    .candidate-list-row {
        grid-template-columns: 56px 1fr;
        gap: 14px;
        padding: 14px;
        border-radius: 22px;
    }

    .candidate-avatar {
        width: 56px;
        height: 56px;
        border-radius: 18px;
    }

    .candidate-info h3 {
        font-size: 16px;
    }

    .candidate-status,
    .candidate-actions {
        grid-column: 1 / -1;
    }

    .candidate-actions {
        max-width: none;
    }
}

/* =========================================
   ADMIN ODISH
========================================= */

.admin-content {
    width: 100%;
}

.admin-content > section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.admin-content > section > .mb-4:first-child,
.admin-content > section > .d-flex:first-child {
    padding: 34px;
    margin-bottom: 0 !important;
    border: 1px solid var(--odish-border);
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(229, 9, 20, .08), transparent 42%),
        #ffffff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .05);
}

.admin-content .text-uppercase.small,
.admin-content .dashboard-mini {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 10px !important;
    padding: 8px 12px;
    border-radius: 999px;
    background: #fff5f5;
    color: var(--odish-red) !important;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .22em;
}

.admin-content h1,
.admin-content .h3 {
    color: var(--odish-text);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: 0;
}

.admin-content h2,
.admin-content .h4 {
    color: var(--odish-text);
    font-weight: 900;
    letter-spacing: 0;
}

.admin-content .card {
    overflow: hidden;
    border: 1px solid var(--odish-border);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 52px rgba(0, 0, 0, .055);
}

.admin-content a.card {
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.admin-content a.card:hover {
    border-color: rgba(229, 9, 20, .22);
    box-shadow: 0 24px 68px rgba(0, 0, 0, .095);
    transform: translateY(-4px);
}

.admin-content .card-header {
    padding: 24px 26px;
    border-bottom: 1px solid var(--odish-border);
    background:
        linear-gradient(135deg, rgba(255, 245, 245, .9), rgba(255, 255, 255, .9));
}

.admin-content .card-body {
    padding: 26px;
}

.admin-content .card-body > p.text-muted:first-child,
.admin-content .stat-card span {
    color: var(--odish-muted) !important;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.admin-content .h2,
.admin-content strong.h2 {
    color: var(--odish-text);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    line-height: 1;
}

.admin-content .btn,
.admin-content button.btn {
    min-height: 42px;
    border-radius: 14px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 900;
    box-shadow: none;
}

.admin-content .btn-sm {
    min-height: 36px;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 12px;
}

.admin-content .btn-primary,
.admin-content .btn-success {
    border-color: var(--odish-red);
    background: var(--odish-red);
    color: #ffffff;
}

.admin-content .btn-primary:hover,
.admin-content .btn-success:hover {
    border-color: #c70811;
    background: #c70811;
    color: #ffffff;
    transform: translateY(-1px);
}

.admin-content .btn-outline-primary,
.admin-content .btn-outline-secondary,
.admin-content .btn-outline-danger,
.admin-content .btn-outline-warning {
    border-color: var(--odish-border);
    background: #ffffff;
    color: var(--odish-text);
}

.admin-content .btn-outline-primary:hover,
.admin-content .btn-outline-secondary:hover,
.admin-content .btn-outline-danger:hover,
.admin-content .btn-outline-warning:hover {
    border-color: rgba(229, 9, 20, .28);
    background: #fff5f5;
    color: var(--odish-red);
}

.admin-content .form-control,
.admin-content .form-select,
.admin-content textarea {
    border: 1px solid var(--odish-border);
    border-radius: 14px;
    background: #fbfbfc;
    color: var(--odish-text);
    box-shadow: none;
}

.admin-content .form-control:focus,
.admin-content .form-select:focus,
.admin-content textarea:focus {
    border-color: rgba(229, 9, 20, .36);
    background: #ffffff;
    box-shadow: 0 0 0 5px rgba(229, 9, 20, .06);
}

.admin-content .table {
    margin: 0;
    color: var(--odish-text);
}

.admin-content .table thead th {
    border-bottom: 1px solid var(--odish-border);
    color: var(--odish-muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.admin-content .table tbody td {
    padding-top: 16px;
    padding-bottom: 16px;
    border-color: var(--odish-border);
    vertical-align: middle;
}

.admin-content .badge {
    padding: 8px 11px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
}

.admin-content .badge.bg-secondary,
.admin-content .badge.bg-warning {
    background: #fff5f5 !important;
    color: var(--odish-red) !important;
}

.admin-content .badge.bg-success {
    background: rgba(25, 135, 84, .1) !important;
    color: #198754 !important;
}

.admin-content .badge.bg-danger {
    background: rgba(220, 53, 69, .1) !important;
    color: #dc3545 !important;
}

.admin-content .alert {
    border: 1px solid rgba(229, 9, 20, .12);
    border-radius: 18px;
    background: #fff5f5;
    color: var(--odish-text);
}

.admin-content dl dt {
    color: var(--odish-muted) !important;
    font-weight: 800;
}

@media(max-width: 768px) {
    .admin-content > section > .mb-4:first-child,
    .admin-content > section > .d-flex:first-child {
        padding: 22px;
        border-radius: 22px;
    }

    .admin-content .card-header,
    .admin-content .card-body {
        padding: 18px;
    }

    .admin-content .table {
        min-width: 680px;
    }
}

.navbar-user-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-icon-btn {
    position: relative;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: #fafafa;
    border: 1px solid var(--odish-border);

    color: var(--odish-text);
    text-decoration: none;

    transition: all .25s ease;
}

.navbar-icon-btn:hover {
    background: #fff1f2;
    border-color: rgba(229,9,20,.15);

    color: var(--odish-red);

    transform: translateY(-2px);
}

.navbar-icon-btn.active {
    background: #fff1f2;
    border-color: rgba(229,9,20,.22);
    color: var(--odish-red);
}

.navbar-icon-btn i {
    font-size: 18px;
}

.navbar-badge {
    position: absolute;

    top: -4px;
    right: -4px;

    min-width: 20px;
    height: 20px;

    padding: 0 5px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;

    background: var(--odish-red);
    color: white;

    font-size: 10px;
    font-weight: 900;

    border: 2px solid white;

    box-shadow: 0 8px 18px rgba(229,9,20,.25);
}

.navbar-account-type {
    max-width: 160px;
    min-height: 34px;
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(229,9,20,.16);
    border-radius: 999px;
    background: #fff1f2;
    color: var(--odish-red);
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.artist-edit-card {
    position: relative;
    overflow: hidden;
}

.artist-edit-card::before {
    content: "";
    position: absolute;
    top: -220px;
    right: -180px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(229,9,20,.08), transparent 70%);
    pointer-events: none;
}

.premium-upgrade-panel {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 82px 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 32px;
    border-radius: 30px;
    background: linear-gradient(135deg, #111, #1b1b1d);
    color: #fff;
    box-shadow: 0 28px 80px rgba(0,0,0,.18);
}

.premium-upgrade-icon {
    width: 82px;
    height: 82px;
    border-radius: 26px;
    background: var(--odish-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    box-shadow: 0 18px 45px rgba(229,9,20,.35);
}

.premium-upgrade-panel span {
    display: inline-block;
    margin-bottom: 8px;
    color: #ff7a82;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .25em;
}

.premium-upgrade-panel h3 {
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.premium-upgrade-panel p {
    color: rgba(255,255,255,.72);
    line-height: 1.7;
    margin: 0;
}

.artist-edit-card > .candidate-stats-grid,
.visibility-kpi-grid {
    position: relative;
    z-index: 1;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.visibility-stat-card small {
    display: block;
    margin-top: 10px;
    color: var(--odish-muted);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.5;
}

.visibility-trend-up small,
.visibility-trend-up small i {
    color: #198754;
}

.visibility-trend-down small,
.visibility-trend-down small i {
    color: #dc3545;
}

.visibility-chart-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
}

.visibility-chart-button {
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--odish-border);
    background: #fff;
    color: var(--odish-text);
    font-size: 13px;
    font-weight: 900;
    transition: .25s ease;
}

.visibility-chart-button:hover,
.visibility-chart-button.active {
    background: var(--odish-red);
    color: #fff;
    border-color: var(--odish-red);
    box-shadow: 0 12px 30px rgba(229,9,20,.18);
}

.visibility-chart-panel {
    display: none;
}

.visibility-chart-panel.active {
    display: block;
}

.visibility-chart-bars {
    height: 280px;
    display: flex;
    align-items: flex-end;
    gap: 14px;
    padding: 24px;
    border-radius: 28px;
    background: #fafafa;
    border: 1px solid var(--odish-border);
    overflow-x: auto;
}

.visibility-chart-item {
    min-width: 58px;
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.visibility-chart-value {
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 900;
    color: var(--odish-text);
}

.visibility-chart-track {
    position: relative;
    flex: 1;
    width: 28px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--odish-border);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.visibility-chart-track span {
    display: block;
    width: 100%;
    min-height: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--odish-red-light), var(--odish-red));
}

.visibility-chart-label {
    margin-top: 12px;
    color: var(--odish-muted);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.visibility-history-table-wrap {
    overflow-x: auto;
    border-radius: 24px;
    border: 1px solid var(--odish-border);
}

.visibility-history-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.visibility-history-table th {
    padding: 16px;
    background: #fafafa;
    color: var(--odish-muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    border-bottom: 1px solid var(--odish-border);
}

.visibility-history-table td {
    padding: 16px;
    border-bottom: 1px solid var(--odish-border);
    color: var(--odish-text);
    font-size: 14px;
    font-weight: 700;
}

.visibility-history-table tbody tr:last-child td {
    border-bottom: 0;
}

.visibility-history-table .visibility-trend-up td:last-child {
    color: #198754;
}

.visibility-history-table .visibility-trend-down td:last-child {
    color: #dc3545;
}

@media(max-width: 992px) {
    .premium-upgrade-panel {
        grid-template-columns: 1fr;
    }

    .premium-upgrade-panel .btn-primary-premium {
        width: 100%;
    }
}

@media(max-width: 768px) {
    .visibility-chart-bars {
        padding: 18px;
        height: 240px;
    }

    .visibility-chart-item {
        min-width: 52px;
    }
}

.recruiter-auditions-page {
    padding: 40px 0;
    background: #f7f8fa;
}

.recruiter-auditions-card {
    position: relative;
    overflow: hidden;
    padding: 40px;
    border-radius: 34px;
}

.recruiter-auditions-card::before {
    content: "";
    position: absolute;
    top: -260px;
    right: -220px;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(229, 9, 20, .08), transparent 70%);
    pointer-events: none;
}

.recruiter-auditions-header {
    position: relative;
    z-index: 1;
    margin-bottom: 34px;
}

.recruiter-auditions-header span {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--odish-red);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.recruiter-auditions-header h2 {
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -2.5px;
    margin-bottom: 16px;
}

.recruiter-auditions-header p {
    color: var(--odish-muted);
    font-size: 17px;
    line-height: 1.8;
    margin: 0;
}

/* KPI TOP */
.candidate-stats-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.candidate-stat-card {
    padding: 22px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--odish-border);
    box-shadow: 0 14px 45px rgba(0,0,0,.045);
    transition: .3s ease;
}

.candidate-stat-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.candidate-stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(229,9,20,.18);
    box-shadow: 0 24px 65px rgba(0,0,0,.08);
}

.candidate-stat-card span {
    display: block;
    margin-bottom: 12px;
    color: var(--odish-muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .10em;
}

.candidate-stat-card strong {
    display: block;
    color: var(--odish-text);
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
}

.candidate-stat-card small {
    display: block;
    margin-top: 12px;
    color: var(--odish-red);
    font-size: 12px;
    font-weight: 800;
}

/* SECTIONS */
.form-section-premium {
    position: relative;
    z-index: 1;
    padding: 30px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid var(--odish-border);
    box-shadow: 0 14px 45px rgba(0,0,0,.04);
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 26px;
}

.form-section-title > span {
    min-width: 46px;
    height: 46px;
    padding: 0 14px;
    border-radius: 16px;
    background: #fff1f2;
    color: var(--odish-red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.form-section-title h3 {
    margin: 0;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -1px;
}

/* KPI VISIBILITY */
.visibility-kpi-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    margin-bottom: 28px;
}

.visibility-stat-card {
    background:
        radial-gradient(circle at top right, rgba(229,9,20,.06), transparent 45%),
        #fff;
}

.visibility-stat-card small {
    display: block;
    margin-top: 12px;
    color: var(--odish-muted);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.5;
}

.visibility-trend-up small,
.visibility-trend-up small i {
    color: #198754;
}

.visibility-trend-down small,
.visibility-trend-down small i {
    color: #dc3545;
}

/* CHART TABS */
.visibility-chart-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.visibility-chart-button {
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--odish-border);
    background: #fff;
    color: var(--odish-text);
    font-size: 13px;
    font-weight: 900;
    transition: .25s ease;
}

.visibility-chart-button:hover,
.visibility-chart-button.active {
    background: var(--odish-red);
    color: #fff;
    border-color: var(--odish-red);
    box-shadow: 0 12px 30px rgba(229,9,20,.18);
}

/* CHART */
.visibility-chart-panel {
    display: none;
}

.visibility-chart-panel.active {
    display: block;
}

.visibility-chart-bars {
    height: 290px;
    display: flex;
    align-items: flex-end;
    gap: 14px;
    padding: 26px;
    margin-bottom: 28px;
    border-radius: 28px;
    background: #fafafa;
    border: 1px solid var(--odish-border);
    overflow-x: auto;
}

.visibility-chart-item {
    min-width: 58px;
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.visibility-chart-value {
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 900;
    color: var(--odish-text);
}

.visibility-chart-track {
    flex: 1;
    width: 30px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--odish-border);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.visibility-chart-track span {
    display: block;
    width: 100%;
    min-height: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--odish-red-light), var(--odish-red));
}

.visibility-chart-label {
    margin-top: 12px;
    color: var(--odish-muted);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

/* TABLE */
.visibility-history-table-wrap {
    overflow-x: auto;
    border-radius: 24px;
    border: 1px solid var(--odish-border);
}

.visibility-history-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.visibility-history-table th {
    padding: 16px;
    background: #fafafa;
    color: var(--odish-muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    border-bottom: 1px solid var(--odish-border);
}

.visibility-history-table td {
    padding: 16px;
    border-bottom: 1px solid var(--odish-border);
    color: var(--odish-text);
    font-size: 14px;
    font-weight: 700;
}

.visibility-history-table tbody tr:last-child td {
    border-bottom: 0;
}

.visibility-history-table .visibility-trend-up td:last-child {
    color: #198754;
}

.visibility-history-table .visibility-trend-down td:last-child {
    color: #dc3545;
}

/* ACTIONS */
.form-section-premium .btn-primary-premium,
.form-section-premium .btn-secondary-premium {
    min-height: 52px;
}

/* RESPONSIVE */
@media(max-width: 992px) {
    .candidate-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media(max-width: 768px) {
    .recruiter-auditions-page {
        padding: 24px 0;
    }

    .recruiter-auditions-card {
        padding: 24px;
        border-radius: 26px;
    }

    .candidate-stats-grid,
    .visibility-kpi-grid {
        grid-template-columns: 1fr;
    }

    .form-section-premium {
        padding: 22px;
        border-radius: 24px;
    }

    .form-section-title {
        align-items: flex-start;
        flex-direction: column;
    }

    .visibility-chart-bars {
        height: 240px;
        padding: 18px;
    }
}

/* =========================
   RESUME INTEGRATION
========================= */

.resume-modal {
    z-index: 12050;
}

body.resume-modal-open .modal-backdrop,
.modal-backdrop.resume-modal-backdrop {
    z-index: 12040;
}

.resume-dashboard-grid {
    display: grid;
    gap: 24px;
}

.resume-crud-panel {
    border: 1px solid var(--odish-border);
    border-radius: 24px;
    background: #fafafa;
    padding: 24px;
}

.resume-crud-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.resume-crud-header > div > span {
    display: block;
    margin-bottom: 6px;
    color: var(--odish-red);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.resume-crud-header h3,
.resume-public-viewer h3,
.resume-public-section h4 {
    margin: 0;
    color: var(--odish-text);
    font-weight: 900;
}

.resume-crud-header h3 {
    font-size: 22px;
}

.resume-crud-header-actions {
    flex: 0 0 auto;
}

.resume-crud-header-actions .btn-primary-premium {
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 14px;
    white-space: nowrap;
}

.resume-crud-form {
    display: grid;
    gap: 14px;
    margin-bottom: 22px;
}

.resume-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.resume-form-grid-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.resume-crud-form .premium-input {
    height: 54px;
    border-radius: 14px;
}

.resume-crud-form .premium-textarea {
    min-height: 100px;
    border-radius: 14px;
}

.resume-crud-form .btn-primary-premium,
.resume-item-actions .btn-primary-premium,
.resume-item-actions .btn-secondary-premium {
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 14px;
}

.resume-check {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
    border: 1px solid var(--odish-border);
    border-radius: 14px;
    background: #fff;
    color: var(--odish-text);
    font-weight: 800;
}

.form-block label.resume-check {
    display: inline-flex;
    margin-bottom: 0;
}

.resume-check input {
    width: 18px;
    height: 18px;
    accent-color: var(--odish-red);
}

.resume-crud-list {
    display: grid;
    gap: 12px;
}

.resume-crud-item {
    border: 1px solid var(--odish-border);
    border-radius: 18px;
    background: #fff;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.resume-crud-item.is-dragging {
    opacity: .72;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .12);
}

.resume-item-main {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-width: 0;
    flex: 1 1 auto;
}

.resume-drag-handle {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border: 1px solid var(--odish-border);
    border-radius: 12px;
    background: #fbfbfc;
    color: var(--odish-muted);
    cursor: grab;
}

.resume-drag-handle:active {
    cursor: grabbing;
}

.resume-item-avatar {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #fff1f2;
    color: var(--odish-red);
    font-size: 18px;
}

.resume-item-content {
    min-width: 0;
    flex: 1 1 auto;
}

.resume-item-title-row {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 4px;
}

.resume-crud-item h4 {
    margin: 0;
    font-size: 17px;
    font-weight: 900;
    color: var(--odish-text);
}

.resume-item-organization {
    margin-bottom: 6px;
    color: var(--odish-text);
    font-size: 14px;
    font-weight: 800;
}

.resume-item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--odish-muted);
    font-size: 13px;
    font-weight: 700;
}

.resume-item-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.resume-item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.resume-item-tags span,
.resume-status-badge {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 5px 10px;
    border-radius: 999px;
    background: #fbfbfc;
    border: 1px solid var(--odish-border);
    color: var(--odish-muted);
    font-size: 12px;
    font-weight: 800;
}

.resume-status-badge {
    background: rgba(25, 135, 84, .08);
    border-color: rgba(25, 135, 84, .2);
    color: #198754;
}

.resume-item-description,
.resume-item-note {
    margin: 10px 0 0;
    color: var(--odish-muted);
    font-size: 13px;
    font-weight: 650;
    line-height: 1.55;
}

.resume-item-description {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.resume-item-note {
    font-style: italic;
}

.resume-edit-details {
    margin-top: 14px;
}

.resume-edit-details summary {
    width: fit-content;
    color: var(--odish-red);
    font-weight: 900;
    cursor: pointer;
}

.resume-inline-form {
    margin: 16px 0 0;
    padding-top: 16px;
    border-top: 1px solid var(--odish-border);
}

.resume-item-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    flex: 0 0 auto;
}

.resume-icon-button {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--odish-border);
    border-radius: 12px;
    background: #fbfbfc;
    color: var(--odish-text);
    transition: var(--transition);
}

.resume-icon-button:hover {
    border-color: rgba(229, 9, 20, .28);
    background: #fff1f2;
    color: var(--odish-red);
}

.resume-delete-button {
    color: #dc3545;
}

.resume-modal .modal-content {
    border: 1px solid var(--odish-border);
    border-radius: 24px;
    box-shadow: var(--odish-shadow);
    overflow: hidden;
}

.resume-modal.fade .modal-dialog {
    transform: translateY(18px);
    transition: transform .18s ease-out, opacity .18s ease-out;
}

.resume-modal.show .modal-dialog {
    transform: translateY(0);
}

.resume-modal .modal-header,
.resume-modal .modal-footer {
    border-color: var(--odish-border);
    padding: 20px 24px;
}

.resume-modal .modal-title {
    font-size: 20px;
    font-weight: 900;
    color: var(--odish-text);
}

.resume-modal .modal-body {
    display: grid;
    gap: 12px;
    padding: 18px;
}

.resume-modal .resume-crud-form {
    margin: 0;
}

.resume-modal .modal-footer .btn-primary-premium,
.resume-modal .modal-footer .btn-secondary-premium {
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 14px;
    font-size: 14px;
}

.resume-modal .form-block {
    padding: 18px;
    border-radius: 16px;
    margin-bottom: 12px;
}

.resume-modal .form-block:last-child {
    margin-bottom: 0;
}

.resume-modal .form-block h3 {
    font-size: 16px;
    margin-bottom: 16px;
}

.resume-modal .form-block label {
    margin-bottom: 7px;
    font-size: 12px;
}

.resume-modal .row.g-4 {
    --bs-gutter-x: 14px;
    --bs-gutter-y: 14px;
}

.resume-modal .premium-input {
    height: 46px;
    padding: 0 14px;
    border-radius: 12px;
    font-size: 13px;
}

.resume-modal .select2-container .select2-selection--single,
.resume-modal .select2-container .select2-selection--multiple {
    min-height: 46px;
    border-radius: 12px;
}

.resume-modal .select2-container--default .select2-selection--single .select2-selection__rendered {
    min-height: 44px;
    padding: 0 38px 0 14px;
    font-size: 13px;
    line-height: 44px;
}

.resume-modal .select2-container--default .select2-selection--single .select2-selection__arrow {
    width: 36px;
    height: 44px;
}

.resume-modal .select2-container--default .select2-selection--multiple {
    padding: 5px 8px;
}

.resume-modal .select2-container--default .select2-selection--multiple .select2-selection__choice {
    font-size: 12px;
}

.resume-modal .premium-textarea {
    min-height: 96px;
    padding: 14px;
    border-radius: 12px;
    font-size: 13px;
}

.resume-modal .resume-check {
    min-height: 46px;
    padding: 0 14px;
    border-radius: 12px;
    font-size: 13px;
}

.resume-modal .resume-check input {
    width: 16px;
    height: 16px;
}

.resume-public-viewer {
    padding-top: 28px;
    margin-top: 28px;
    border-top: 1px solid var(--odish-border);
}

.resume-public-viewer h3 {
    font-size: 24px;
    margin-bottom: 18px;
}

.resume-public-section {
    margin-bottom: 22px;
}

.resume-public-section:last-child {
    margin-bottom: 0;
}

.resume-public-section h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.resume-public-section ul {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.resume-public-section li {
    padding: 16px;
    border: 1px solid var(--odish-border);
    border-radius: 16px;
    background: #fafafa;
}

.resume-public-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.resume-public-section strong,
.resume-public-section span,
.resume-public-section small {
    display: block;
}

.resume-public-section strong {
    color: var(--odish-text);
    font-weight: 900;
}

.resume-public-section span,
.resume-public-section small,
.resume-public-section p {
    color: var(--odish-muted);
    font-weight: 700;
}

.resume-public-section p {
    margin: 8px 0 0;
    line-height: 1.6;
}

.resume-public-section .resume-item-title-row {
    margin-bottom: 4px;
}

.resume-public-section .resume-item-title-row strong {
    display: inline;
}

.resume-public-section .resume-item-organization {
    display: block;
    color: var(--odish-text);
}

.resume-public-section .resume-item-meta span,
.resume-public-section .resume-item-tags span,
.resume-public-section .resume-status-badge {
    display: inline-flex;
}

.resume-public-section .resume-item-description {
    margin-top: 10px;
}

.resume-public-languages ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media(max-width: 768px) {
    .resume-crud-panel {
        padding: 18px;
        border-radius: 20px;
    }

    .resume-crud-header,
    .resume-crud-item {
        align-items: stretch;
        flex-direction: column;
    }

    .resume-crud-header-actions,
    .resume-crud-header-actions .btn-primary-premium {
        width: 100%;
    }

    .resume-form-grid,
    .resume-form-grid-compact,
    .resume-public-languages ul {
        grid-template-columns: 1fr;
    }

    .resume-item-main {
        gap: 10px;
    }

    .resume-item-actions {
        justify-content: flex-end;
    }
}

.sidebar-subitem-label {
    cursor: default;
    margin-top: 8px;
    opacity: .75;
}

.sidebar-subitem-label:hover {
    background: transparent;
}

.media-dashboard-page .artist-edit-card {
    overflow: visible;
}

.media-page-header {
    align-items: flex-start;
    display: flex;
    gap: 18px;
    justify-content: space-between;
}

.media-header-actions {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.media-counter-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 0 0 28px;
}

.media-counter {
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 8px;
    padding: 16px;
    background: rgba(255, 255, 255, .72);
}

.media-counter strong,
.media-counter span {
    display: block;
}

.media-counter strong {
    color: var(--odish-text);
    font-size: 1.35rem;
    font-weight: 900;
}

.media-counter span {
    color: var(--odish-muted);
    font-weight: 700;
}

.media-panel {
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 8px;
    padding: 20px;
    background: rgba(255, 255, 255, .7);
    height: 100%;
}

.media-album-layout {
    display: grid;
    grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
    gap: 18px;
}

.media-albums-panel {
    align-self: start;
}

.media-panel-title-row {
    align-items: flex-start;
    display: flex;
    gap: 14px;
    justify-content: space-between;
    margin-bottom: 16px;
}

.media-panel h3 {
    margin: 0 0 16px;
    color: var(--odish-text);
    font-size: 1rem;
    font-weight: 900;
}

.media-panel-title-row h3 {
    margin-bottom: 4px;
}

.media-panel-title-row p {
    color: var(--odish-muted);
    font-weight: 700;
    margin: 0;
}

.media-album-list,
.media-form {
    display: grid;
    gap: 12px;
}

.media-album-card {
    align-items: center;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 8px;
    color: inherit;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding: 14px;
    text-decoration: none;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.media-album-card:hover,
.media-album-card.active {
    border-color: rgba(245, 158, 11, .52);
    box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
    color: inherit;
    transform: translateY(-1px);
}

.media-album-card strong,
.media-album-card span {
    display: block;
}

.media-album-card strong {
    color: var(--odish-text);
    font-weight: 900;
}

.media-album-card span {
    color: var(--odish-muted);
    font-size: .9rem;
    font-weight: 700;
}

.media-photo-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.media-photo-tile {
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.media-photo-button {
    border: 0;
    background: transparent;
    cursor: zoom-in;
    display: block;
    padding: 0;
    width: 100%;
}

.media-photo-button img {
    aspect-ratio: 4 / 3;
    display: block;
    object-fit: cover;
    width: 100%;
}

.media-photo-meta {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    padding: 12px;
}

.media-photo-meta strong,
.media-photo-meta span {
    display: block;
}

.media-photo-meta strong {
    color: var(--odish-text);
    font-weight: 900;
}

.media-photo-meta span {
    color: var(--odish-muted);
    font-size: .9rem;
    font-weight: 700;
}

.media-photo-actions {
    align-items: center;
    display: inline-flex;
    flex-shrink: 0;
    gap: 8px;
}

.media-photo-icon-button {
    align-items: center;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    height: 34px;
    justify-content: center;
    padding: 0;
    transition: background .2s ease, color .2s ease, transform .2s ease;
    width: 34px;
}

.media-photo-icon-button:hover {
    transform: translateY(-1px);
}

.media-photo-profile-button {
    background: rgba(18, 130, 118, .1);
    color: #0f766e;
}

.media-photo-profile-button:hover {
    background: #0f766e;
    color: #fff;
}

.media-photo-public-button {
    background: rgba(37, 99, 235, .1);
    color: #2563eb;
}

.media-photo-public-button:hover {
    background: #2563eb;
    color: #fff;
}

.media-photo-delete-button {
    background: rgba(239, 68, 68, .1);
    color: #dc2626;
}

.media-photo-delete-button:hover {
    background: #dc2626;
    color: #fff;
}

.media-audio-public-button {
    background: rgba(37, 99, 235, .1);
    color: #2563eb;
}

.media-audio-public-button:hover {
    background: #2563eb;
    color: #fff;
}

.media-video-public-button {
    background: rgba(124, 58, 237, .1);
    color: #6d28d9;
}

.media-video-public-button:hover {
    background: #6d28d9;
    color: #fff;
}

.media-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--odish-muted);
    font-weight: 700;
}

.media-list {
    display: grid;
    gap: 12px;
}

.media-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 8px;
    padding: 14px;
    background: #fff;
}

.media-audio-item,
.media-video-item {
    display: grid;
    grid-template-columns: minmax(170px, 1fr) minmax(260px, 360px) auto;
}

.media-audio-info,
.media-video-info {
    min-width: 0;
}

.media-list-item strong,
.media-list-item span {
    display: block;
}

.media-list-item strong {
    color: var(--odish-text);
    font-weight: 900;
}

.media-list-item span {
    color: var(--odish-muted);
    font-size: .9rem;
    font-weight: 700;
}

.media-list-item img {
    width: 76px;
    height: 76px;
    flex: 0 0 76px;
    object-fit: cover;
    border-radius: 8px;
}

.media-list-item audio {
    width: 100%;
}

.media-list-item video {
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
}

.media-audio-player,
.media-video-player {
    align-items: center;
    display: flex;
    min-height: 40px;
    width: 100%;
}

.media-video-player {
    min-height: 96px;
}

.media-audio-open-link {
    align-items: center;
    background: rgba(15, 23, 42, .04);
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 8px;
    color: var(--odish-text);
    display: inline-flex;
    font-size: .92rem;
    font-weight: 800;
    gap: 8px;
    justify-content: center;
    min-height: 40px;
    padding: 8px 12px;
    text-decoration: none;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
    width: 100%;
}

.media-audio-open-link:hover {
    background: rgba(18, 130, 118, .09);
    border-color: rgba(18, 130, 118, .2);
    color: #0f766e;
}

.media-audio-player-empty {
    align-items: center;
    background: rgba(15, 23, 42, .04);
    border: 1px dashed rgba(15, 23, 42, .14);
    border-radius: 8px;
    color: var(--odish-muted);
    display: inline-flex;
    font-size: .9rem;
    font-weight: 800;
    justify-content: center;
    min-height: 40px;
    padding: 8px 12px;
    width: 100%;
}

.media-audio-actions,
.media-video-actions {
    align-items: center;
    display: inline-flex;
    gap: 8px;
    justify-content: flex-end;
}

.media-modal .modal-content,
.media-lightbox-modal .modal-content {
    border: 0;
    border-radius: 8px;
}

.media-modal,
.media-lightbox-modal {
    z-index: 2147483000 !important;
}

.media-lightbox-modal {
    bottom: 0 !important;
    height: 100dvh !important;
    inset: 0 !important;
    left: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    padding: 10px !important;
    position: fixed !important;
    right: 0 !important;
    top: 0 !important;
    transform: none !important;
    transition: none !important;
    width: 100vw !important;
}

.media-lightbox-modal.show {
    display: block !important;
}

body.media-modal-open .modal-backdrop,
.modal-backdrop.media-modal-backdrop {
    z-index: 2147482990 !important;
}

.media-modal.fade .modal-dialog,
.media-lightbox-modal.fade .modal-dialog {
    transform: translateY(18px);
    transition: transform .18s ease-out, opacity .18s ease-out;
}

.media-lightbox-modal .modal-dialog {
    height: calc(100% - 20px) !important;
    left: 50% !important;
    margin: 0 !important;
    max-width: none !important;
    min-height: auto !important;
    position: absolute !important;
    top: 10px !important;
    transform: translateX(-50%) !important;
    transition: none !important;
    width: min(1140px, calc(100vw - 20px)) !important;
}

.media-lightbox-modal .modal-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: none;
    overflow: hidden;
    width: 100%;
}

.media-modal.show .modal-dialog {
    transform: translateY(0);
}

.media-modal .modal-header,
.media-modal .modal-footer,
.media-lightbox-modal .modal-header {
    border-color: rgba(15, 23, 42, .08);
}

.media-modal .modal-title,
.media-lightbox-modal .modal-title {
    color: var(--odish-text);
    font-size: 1.15rem;
    font-weight: 900;
}

.media-modal .modal-body {
    display: grid;
    gap: 12px;
}

.media-lightbox-modal .modal-header span {
    color: var(--odish-muted);
    display: block;
    font-weight: 700;
}

.media-lightbox-modal .modal-body {
    align-items: center;
    background: #0f172a;
    display: flex;
    flex: 1 1 auto;
    justify-content: center;
    min-height: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
}

.media-lightbox-modal img {
    display: block;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    width: 100%;
}

.media-lightbox-nav {
    align-items: center;
    background: rgba(255, 255, 255, .92);
    border: 0;
    border-radius: 999px;
    color: var(--odish-text);
    display: inline-flex;
    height: 44px;
    justify-content: center;
    position: absolute;
    top: calc(50% - 22px);
    width: 44px;
    z-index: 2;
}

.media-lightbox-prev {
    left: 16px;
}

.media-lightbox-next {
    right: 16px;
}

@media(max-width: 768px) {
    .public-artist-albums__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .media-lightbox-modal .modal-dialog {
        height: calc(100% - 20px) !important;
        width: calc(100vw - 20px) !important;
    }

    .media-lightbox-modal .modal-body {
        min-height: 0;
    }

    .media-lightbox-modal img {
        max-height: 100%;
    }

    .media-lightbox-prev {
        left: 10px;
    }

    .media-lightbox-next {
        right: 10px;
    }

    .media-page-header,
    .media-panel-title-row,
    .media-photo-meta {
        align-items: stretch;
        flex-direction: column;
    }

    .media-header-actions,
    .media-header-actions .btn-primary-premium,
    .media-header-actions .btn-secondary-premium {
        width: 100%;
    }

    .media-album-layout,
    .media-photo-grid {
        grid-template-columns: 1fr;
    }

    .media-counter-grid {
        grid-template-columns: 1fr;
    }

    .media-list-item {
        align-items: stretch;
        flex-direction: column;
    }

    .media-audio-item,
    .media-video-item {
        grid-template-columns: 1fr;
    }

    .media-audio-actions,
    .media-video-actions {
        justify-content: flex-start;
    }

    .media-list-item audio,
    .media-list-item .btn-secondary-premium,
    .media-list-item .btn-primary-premium {
        width: 100%;
    }
}

@media(max-width: 480px) {
    .public-artist-albums__grid {
        grid-template-columns: 1fr;
    }
}

.media-audio-premium .artist-edit-card {
    position: relative;
    overflow: hidden;
    padding: 42px;
    border-radius: 34px;
}

.media-audio-premium .artist-edit-card::before {
    content: "";
    position: absolute;
    top: -260px;
    right: -220px;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(229,9,20,.08), transparent 70%);
    pointer-events: none;
}

.media-page-header {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 30px;
}

.media-header-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.media-counter-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(140px, 190px));
    gap: 14px;
    margin-bottom: 28px;
}

.media-counter {
    padding: 18px 20px;
    border-radius: 22px;
    background: #fff1f2;
    border: 1px solid rgba(229,9,20,.12);
    box-shadow: 0 12px 35px rgba(229,9,20,.06);
}

.media-counter strong {
    display: block;
    color: var(--odish-red);
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
}

.media-counter span {
    color: var(--odish-muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.media-list {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.media-list-item {
    display: grid;
    grid-template-columns: 1fr minmax(240px, 360px) auto;
    align-items: center;
    gap: 18px;
    padding: 20px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid var(--odish-border);
    box-shadow: 0 14px 45px rgba(0,0,0,.045);
    transition: .28s ease;
}

.media-list-item:hover {
    transform: translateY(-3px);
    border-color: rgba(229,9,20,.18);
    box-shadow: 0 24px 65px rgba(0,0,0,.08);
}

.media-audio-info strong,
.media-video-info strong {
    display: block;
    font-size: 18px;
    font-weight: 900;
    color: var(--odish-text);
    margin-bottom: 6px;
}

.media-audio-info span,
.media-video-info span {
    color: var(--odish-muted);
    font-size: 13px;
    font-weight: 800;
}

.media-audio-player audio {
    width: 100%;
    height: 42px;
}

.media-video-player video {
    max-height: 190px;
    object-fit: cover;
    width: 100%;
}

.media-audio-open-link {
    min-height: 46px;
    padding: 12px 16px;
    border-radius: 16px;
    background: #fafafa;
    border: 1px solid var(--odish-border);
    color: var(--odish-text);
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: .25s ease;
}

.media-audio-open-link:hover {
    background: var(--odish-red);
    border-color: var(--odish-red);
    color: #fff;
}

.media-platform-logo {
    border-radius: 6px;
    display: block;
    flex: 0 0 24px;
    height: 24px;
    object-fit: contain;
    width: 24px;
}

.media-platform-icon {
    color: var(--platform-color, var(--odish-red));
    flex: 0 0 auto;
    font-size: 1.25rem;
}

.media-audio-open-link:hover .media-platform-icon {
    color: currentColor;
}

.media-audio-actions,
.media-video-actions {
    display: flex;
    gap: 10px;
}

.media-audio-premium .media-list {
    align-items: stretch;
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.media-audio-premium .media-audio-item {
    align-items: stretch;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    min-height: 306px;
    padding: 0;
}

.media-audio-premium .media-audio-info {
    border-bottom: 1px solid rgba(15, 23, 42, .08);
    min-height: 76px;
    padding: 16px 16px 12px;
}

.media-audio-premium .media-audio-info strong {
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 0;
    overflow: hidden;
}

.media-audio-premium .media-audio-info span {
    margin-top: 6px;
}

.media-audio-premium .media-audio-player {
    align-items: center;
    background: #fbfbfc;
    min-height: 168px;
    padding: 16px;
}

.media-audio-premium .media-audio-player audio {
    width: 100%;
}

.media-embed-frame {
    border: 0;
    display: block;
    width: 100%;
}

.media-audio-embed-frame {
    border-radius: 12px;
    height: 152px;
}

.media-video-embed-frame {
    aspect-ratio: 16 / 9;
    height: 100%;
    min-height: 190px;
}

.media-audio-premium .media-audio-open-link,
.media-audio-premium .media-audio-player-empty {
    min-height: 50px;
}

.media-audio-premium .media-audio-actions {
    border-top: 1px solid rgba(15, 23, 42, .08);
    justify-content: flex-end;
    min-height: 68px;
    padding: 14px 16px;
}

.media-video-premium .media-list {
    align-items: stretch;
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.media-video-premium .media-video-item {
    align-items: stretch;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    min-height: 340px;
    padding: 0;
}

.media-video-premium .media-video-info {
    border-bottom: 1px solid rgba(15, 23, 42, .08);
    min-height: 76px;
    padding: 16px 16px 12px;
}

.media-video-premium .media-video-info strong {
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 0;
    overflow: hidden;
}

.media-video-premium .media-video-info span {
    margin-top: 6px;
}

.media-video-premium .media-video-player {
    align-items: center;
    background: #0f172a;
    min-height: 190px;
    padding: 0;
}

.media-video-premium .media-video-player video {
    aspect-ratio: 16 / 9;
    border-radius: 0;
    display: block;
    height: 100%;
    max-height: none;
    object-fit: cover;
    width: 100%;
}

.media-video-premium .media-video-embed-frame {
    height: 100%;
    min-height: 190px;
}

.media-video-premium .media-audio-open-link {
    align-self: stretch;
    border-radius: 0;
    min-height: 190px;
}

.media-video-premium .media-video-actions {
    border-top: 1px solid rgba(15, 23, 42, .08);
    justify-content: flex-end;
    min-height: 68px;
    padding: 14px 16px;
}

.public-media-actions {
    pointer-events: none;
}

.media-photo-icon-button {
    width: 44px;
    height: 44px;
    border: 1px solid var(--odish-border);
    border-radius: 15px;
    background: #fafafa;
    color: var(--odish-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .25s ease;
}

.media-photo-icon-button:hover {
    background: #fff1f2;
    color: var(--odish-red);
    border-color: rgba(229,9,20,.18);
    transform: translateY(-2px);
}

.media-photo-delete-button:hover {
    background: rgba(220,53,69,.08);
    color: #dc3545;
    border-color: rgba(220,53,69,.22);
}

.media-photo-public-button:hover,
.media-audio-public-button:hover {
    background: rgba(37, 99, 235, .1);
    color: #2563eb;
    border-color: rgba(37, 99, 235, .22);
}

.media-video-public-button:hover {
    background: rgba(124, 58, 237, .1);
    color: #6d28d9;
    border-color: rgba(124, 58, 237, .22);
}

.media-audio-player-empty,
.artist-empty-state {
    padding: 40px;
    border-radius: 24px;
    background: #fffafa;
    border: 1px dashed rgba(229,9,20,.25);
    color: var(--odish-muted);
    font-weight: 800;
    text-align: center;
}

.media-modal .modal-content {
    border: 0;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(0,0,0,.18);
}

.media-modal .modal-header,
.media-modal .modal-footer {
    padding: 24px 28px;
    border-color: var(--odish-border);
}

.media-modal .modal-title {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -.6px;
}

.media-modal .modal-body {
    padding: 28px;
    display: grid;
    gap: 14px;
}

.media-modal .form-control {
    min-height: 58px;
    border-radius: 18px;
    border: 1px solid var(--odish-border);
    background: #fbfbfc;
    padding: 0 18px;
    font-weight: 700;
    box-shadow: none !important;
}

.media-modal .form-control:focus {
    background: #fff;
    border-color: rgba(229,9,20,.35);
    box-shadow: 0 0 0 5px rgba(229,9,20,.06) !important;
}

.media-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 18px;
    background: #fafafa;
    border: 1px solid var(--odish-border);
    font-weight: 800;
}

@media(max-width: 992px) {
    .media-page-header {
        flex-direction: column;
    }

    .media-counter-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .media-list-item {
        grid-template-columns: 1fr;
    }

    .media-audio-premium .media-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .media-video-premium .media-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .public-media-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .media-audio-actions {
        justify-content: flex-start;
    }
}

@media(max-width: 768px) {
    .media-audio-premium .artist-edit-card {
        padding: 24px;
        border-radius: 26px;
    }

    .media-counter-grid {
        grid-template-columns: 1fr;
    }

    .media-audio-premium .media-list {
        grid-template-columns: 1fr;
    }

    .media-audio-premium .media-audio-item {
        min-height: 290px;
    }

    .media-video-premium .media-list {
        grid-template-columns: 1fr;
    }

    .media-video-premium .media-video-item {
        min-height: 320px;
    }

    .media-header-actions,
    .media-header-actions button {
        width: 100%;
    }
}

@media(max-width: 768px) {
    .public-photo-grid,
    .public-album-grid,
    .public-video-grid,
    .public-media-list,
    .public-audio-card {
        grid-template-columns: 1fr;
    }

    .public-album-button,
    .public-album-button img {
        min-height: 112px;
    }

}
.odish-market-selector {
    align-items: center;
    margin-left: 12px;
}

.odish-market-selector__button,
.odish-market-selector__static {
    align-items: center;
    border: 1px solid rgba(20, 20, 20, .12);
    border-radius: 999px;
    background: #fff;
    color: #1b1b1b;
    display: inline-flex;
    font-size: 13px;
    font-weight: 700;
    gap: 7px;
    min-height: 34px;
    padding: 6px 11px;
}

.odish-market-selector__menu {
    min-width: 240px;
}
