/* =========================================================
   RATATOUILLE MEDIA - ROYAL NOIR PREMIUM STYLE
   Option 2: Elegant black / champagne / luxury agency look
========================================================= */

/* ===============================
   01. ROOT
================================ */
:root {
    --black-0: #030303;
    --black-1: #070707;
    --black-2: #0d0d0f;
    --black-3: #141418;

    --champagne: #e6c76a;
    --gold: #d4af37;
    --gold-dark: #9f7a1f;
    --cream: #f8f1dc;

    --white: #ffffff;
    --soft-white: rgba(255,255,255,0.78);
    --muted: rgba(255,255,255,0.55);

    --line: rgba(255,255,255,0.10);
    --line-gold: rgba(230,199,106,0.36);

    --shadow: 0 22px 70px rgba(0,0,0,0.50);
    --shadow-soft: 0 14px 40px rgba(0,0,0,0.35);
    --shadow-gold: 0 0 35px rgba(230,199,106,0.18);

    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 18px;
    --radius-sm: 12px;

    --container: 1260px;
}

/* ===============================
   02. GLOBAL
================================ */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background:
        radial-gradient(circle at 15% 0%, rgba(230,199,106,0.13), transparent 30%),
        radial-gradient(circle at 85% 15%, rgba(230,199,106,0.07), transparent 35%),
        linear-gradient(135deg, #020202 0%, #080808 45%, #030303 100%);
    color: var(--white);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px);
    background-size: 58px 58px;
    opacity: 0.35;
    pointer-events: none;
    z-index: -1;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

/* ===============================
   03. HERO
================================ */
.hero {
    min-height: 720px;
    position: relative;
    overflow: hidden;
    color: var(--white);
    padding: 30px 7%;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.88), rgba(0,0,0,0.48), rgba(0,0,0,0.84)),
        linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.92)),
        url("https://images.unsplash.com/photo-1534528741775-53994a69daeb?auto=format&fit=crop&w=1800&q=85");
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 18%, rgba(230,199,106,0.16), transparent 42%),
        linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.72) 100%);
    z-index: 1;
}

.hero::after {
    content: "";
    position: absolute;
    left: 7%;
    right: 7%;
    bottom: 58px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230,199,106,0.7), transparent);
    z-index: 2;
}

/* ===============================
   04. NAVBAR
================================ */
.navbar {
    position: relative;
    z-index: 10001;
    max-width: 1380px;
    margin: 0 auto;
    padding: 13px 16px 13px 22px;
    border-radius: 999px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.025)),
        rgba(0,0,0,0.55);
    border: 1px solid rgba(230,199,106,0.20);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 55px rgba(0,0,0,0.48);
}

.logo {
    font-size: 24px;
    font-weight: 950;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--champagne);
    text-shadow: 0 0 24px rgba(230,199,106,0.26);
    white-space: nowrap;
}

.logo::before {
    content: "◆";
    font-size: 13px;
    margin-right: 10px;
    color: var(--champagne);
    vertical-align: middle;
}

/* ===============================
   05. NAVIGATION
================================ */
.menu-toggle,
.mobile-menu-title,
.mobile-menu-overlay {
    display: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-actions a {
    min-height: 44px;
    padding: 12px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
    font-size: 14px;
    color: var(--white);
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    transition: 0.25s ease;
}

.nav-actions a:hover {
    color: #060606;
    background: linear-gradient(135deg, var(--champagne), var(--gold));
    border-color: rgba(230,199,106,0.7);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ===============================
   06. HERO CONTENT
================================ */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
    margin: 135px auto 0;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 22px;
    border-radius: 999px;
    background: rgba(230,199,106,0.10);
    border: 1px solid rgba(230,199,106,0.42);
    color: var(--champagne);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 26px;
    backdrop-filter: blur(12px);
}

.hero-content h1 {
    margin: 0 0 24px;
    font-size: clamp(48px, 6.2vw, 88px);
    line-height: 0.92;
    font-weight: 950;
    letter-spacing: -3px;
    color: var(--white);
    text-shadow: 0 18px 70px rgba(0,0,0,0.8);
}

.hero-content p {
    max-width: 730px;
    margin: 0 auto;
    color: rgba(255,255,255,0.76);
    font-size: 21px;
    line-height: 1.72;
    font-weight: 500;
}

/* ===============================
   07. BUTTONS
================================ */
.btn,
.btn-main,
.btn-light {
    min-height: 48px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 13px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 950;
    cursor: pointer;
    border: none;
    transition: 0.25s ease;
}

.btn-main {
    background: linear-gradient(135deg, var(--champagne), var(--gold));
    color: #050505;
    box-shadow: 0 14px 36px rgba(230,199,106,0.24);
}

.btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 50px rgba(230,199,106,0.34);
}

.btn-light {
    background: rgba(255,255,255,0.95);
    color: #050505;
}

.btn-light:hover {
    background: linear-gradient(135deg, var(--champagne), var(--gold));
    transform: translateY(-2px);
}

/* ===============================
   08. STATS
================================ */
.stats {
    max-width: 1120px;
    margin: -78px auto 48px;
    padding: 0 20px;
    position: relative;
    z-index: 6;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.stats > div {
    position: relative;
    overflow: hidden;
    min-height: 145px;
    padding: 30px 22px;
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.02)),
        rgba(10,10,12,0.94);
    border: 1px solid rgba(230,199,106,0.16);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
    text-align: center;
}

.stats > div::after {
    content: "";
    position: absolute;
    inset: auto 24px 0 24px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(230,199,106,0.75), transparent);
}

.stats h2 {
    margin: 0;
    font-size: 38px;
    line-height: 1;
    color: var(--champagne);
    font-weight: 950;
}

.stats p {
    margin: 10px 0 0;
    color: var(--muted);
    font-weight: 700;
}

/* ===============================
   09. JOIN CARD
================================ */
.join-card {
    display: block;
    height: 100%;
    padding: 26px;
    border-radius: 28px;
    text-decoration: none;
    text-align: center;
    background:
        radial-gradient(circle at top, rgba(230,199,106,0.18), transparent 55%),
        rgba(255,255,255,0.04);
    border: 1px solid rgba(230,199,106,0.24);
    color: var(--white);
    transition: 0.3s ease;
}

.join-card h2 {
    margin: 0;
    color: var(--champagne);
    font-size: 34px;
    font-weight: 950;
}

.join-card p {
    color: var(--muted);
}

.join-card:hover {
    background: linear-gradient(135deg, var(--champagne), var(--gold));
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(230,199,106,0.25);
}

.join-card:hover h2,
.join-card:hover p {
    color: #050505;
}

/* ===============================
   10. FILTER SECTION
================================ */
.filters-section {
    max-width: 1220px;
    margin: 50px auto 24px;
    padding: 0 20px;
}

.filters-section h2 {
    margin: 0 0 22px;
    color: var(--white);
    font-size: 35px;
    font-weight: 950;
    letter-spacing: -0.7px;
    text-align: center;
}

.filters-section h2::after {
    content: "";
    display: block;
    width: 90px;
    height: 2px;
    margin: 14px auto 0;
    background: linear-gradient(90deg, transparent, var(--champagne), transparent);
}

.filters {
    display: grid;
    grid-template-columns: 2fr 1.25fr 1.25fr 1fr auto auto;
    gap: 12px;
    padding: 18px;
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.018)),
        rgba(8,8,10,0.94);
    border: 1px solid rgba(230,199,106,0.14);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.filters input,
.filters select {
    width: 100%;
    min-height: 52px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.12);
    outline: none;
    background: rgba(0,0,0,0.38);
    color: var(--white);
    font-size: 15px;
    transition: 0.22s ease;
}

.filters select option {
    background: #111;
    color: #fff;
}

.filters input::placeholder {
    color: rgba(255,255,255,0.42);
}

.filters input:focus,
.filters select:focus {
    border-color: var(--champagne);
    box-shadow: 0 0 0 4px rgba(230,199,106,0.13);
    background: rgba(0,0,0,0.58);
}

.filters button {
    min-height: 52px;
    padding: 14px 22px;
    border: none;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--champagne), var(--gold));
    color: #050505;
    font-weight: 950;
    cursor: pointer;
    transition: 0.25s ease;
}

.filters button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(230,199,106,0.25);
}

.reset-btn {
    min-height: 52px;
    padding: 14px 18px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--white);
    text-decoration: none;
    font-weight: 950;
    transition: 0.25s ease;
}

.reset-btn:hover {
    color: var(--champagne);
    background: rgba(255,255,255,0.11);
}

/* ===============================
   11. TALENT GRID
================================ */
.talent-grid {
    max-width: var(--container);
    margin: 36px auto 82px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.talent-card {
    position: relative;
    overflow: hidden;
    padding: 34px 20px 30px;
    border-radius: 34px;
    text-align: center;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.018)),
        rgba(10,10,12,0.96);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: var(--shadow);
    transition: 0.3s ease;
}

.talent-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center top, rgba(230,199,106,0.16), transparent 48%),
        linear-gradient(to bottom, transparent, rgba(0,0,0,0.22));
    pointer-events: none;
}

.talent-card:hover {
    transform: translateY(-9px);
    border-color: rgba(230,199,106,0.34);
    box-shadow:
        0 30px 80px rgba(0,0,0,0.58),
        0 0 34px rgba(230,199,106,0.10);
}

.talent-card-link,
.talent-name-link {
    position: relative;
    z-index: 2;
    text-decoration: none;
    color: inherit;
    display: block;
}

.my-card {
    border-color: rgba(230,199,106,0.72);
    box-shadow:
        0 24px 70px rgba(0,0,0,0.55),
        0 0 36px rgba(230,199,106,0.18);
}

.my-label {
    position: relative;
    z-index: 2;
    display: inline-flex;
    margin: 12px 0 0;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(230,199,106,0.12);
    color: var(--champagne);
    border: 1px solid rgba(230,199,106,0.34);
    font-weight: 950;
    font-size: 12px;
}

/* ===============================
   12. TALENT IMAGE
================================ */
.circle-photo {
    position: relative;
    z-index: 2;
    width: 204px !important;
    height: 204px !important;
    margin: 0 auto 22px;
    border-radius: 50% !important;
    overflow: hidden !important;
    cursor: zoom-in;
    background: #111;
    border: 2px solid rgba(230,199,106,0.28) !important;
    box-shadow:
        0 20px 55px rgba(0,0,0,0.62),
        0 0 0 8px rgba(255,255,255,0.025);
    transition: 0.32s ease;
}

.circle-photo:hover {
    transform: scale(1.055);
    border-color: rgba(230,199,106,0.75) !important;
    box-shadow:
        0 24px 62px rgba(0,0,0,0.7),
        0 0 34px rgba(230,199,106,0.20);
}

.circle-photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;

    /* PERFECT CASTING POSITION */
    object-position:center 18%;    border-radius: 50% !important;
    display: block !important;
    filter: saturate(0.95) contrast(1.05);
}

.talent-card h3 {
    position: relative;
    z-index: 2;
    margin: 0;
    color: var(--white);
    font-size: 21px;
    line-height: 1.25;
    font-weight: 950;
}

.no-photo {
    width: 100%;
    height: 100%;
    display:flex;
    align-items:center;
    justify-content:center;
    color: rgba(255,255,255,0.55);
    background: #161616;
    font-size:14px;
    border-radius: 50%;
}

/* ===============================
   13. EMPTY STATE
================================ */
.empty {
    grid-column: 1 / -1;
    padding: 52px 28px;
    border-radius: 32px;
    text-align: center;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.018)),
        rgba(10,10,12,0.96);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: var(--shadow);
}

.empty h3 {
    margin: 0 0 10px;
    font-size: 26px;
}

.empty p {
    color: var(--muted);
}

/* ===============================
   14. IMAGE VIEWER
================================ */
#imageViewer {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    padding: 20px;
    background:
        radial-gradient(circle at center, rgba(230,199,106,0.10), transparent 38%),
        rgba(0,0,0,0.96);
    backdrop-filter: blur(12px);
    cursor: zoom-out;
}

#imageViewer img {
    max-width: 94%;
    max-height: 94%;
    object-fit: contain;
    border-radius: 24px;
    background: #050505;
    box-shadow:
        0 35px 95px rgba(0,0,0,0.85),
        0 0 0 1px rgba(230,199,106,0.24);
}

.viewer-close {
    position: fixed;
    top: 22px;
    right: 30px;
    color: #fff;
    font-size: 52px;
    font-weight: 200;
    z-index: 1000000;
}

/* ===============================
   15. FOOTER
================================ */
footer {
    padding: 30px 18px;
    text-align: center;
    color: rgba(255,255,255,0.58);
    background:
        linear-gradient(135deg, rgba(230,199,106,0.08), transparent),
        #020202;
    border-top: 1px solid rgba(255,255,255,0.08);
}

footer p {
    margin: 0;
    font-weight: 700;
}

/* ===============================
   16. LARGE TABLET
================================ */
@media (max-width: 1200px) {
    .talent-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .filters {
        grid-template-columns: 1.6fr 1fr 1fr 1fr;
    }

    .filters button,
    .reset-btn {
        grid-column: span 2;
    }
}

/* ===============================
   17. TABLET
================================ */
@media (max-width: 1000px) {
    .hero {
        min-height: 650px;
    }

    .hero-content {
        margin-top: 115px;
    }

    .circle-photo {
        width: 178px !important;
        height: 178px !important;
    }

    .talent-card {
        padding: 30px 18px 26px;
    }
}

/* ===============================
   18. MOBILE MENU
================================ */
@media (max-width: 900px) {
    body.menu-open {
        overflow: hidden;
    }

    .hero {
        min-height: 620px;
        padding: 20px;
        background-position: center top;
    }

    .navbar {
        width: 100% !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        position: relative !important;
        z-index: 10001 !important;
        border-radius: 24px;
        padding: 12px 14px;
    }

    .logo {
        max-width: 75%;
        font-size: 20px !important;
        white-space: normal;
        line-height: 1.1;
    }

    .menu-toggle {
        display: flex !important;
        width: 48px;
        height: 48px;
        padding: 0;
        border: 1px solid rgba(230,199,106,0.45);
        border-radius: 50%;
        background: rgba(0,0,0,0.48);
        backdrop-filter: blur(14px);
        box-shadow: 0 12px 35px rgba(0,0,0,0.45);
        cursor: pointer;
        z-index: 10003;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
    }

    .menu-toggle span {
        width: 20px;
        height: 2px;
        background: var(--champagne);
        border-radius: 999px;
        display: block;
        transition: 0.3s ease;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-8px);
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-menu-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.68);
        backdrop-filter: blur(8px);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease;
        z-index: 9998;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-actions {
        position: fixed !important;
        top: 86px !important;
        left: 18px !important;
        right: 18px !important;
        width: auto !important;
        padding: 18px !important;
        border-radius: 30px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        background:
            radial-gradient(circle at top left, rgba(230,199,106,0.17), transparent 45%),
            linear-gradient(145deg, rgba(18,18,20,0.98), rgba(3,3,3,0.98)) !important;
        border: 1px solid rgba(230,199,106,0.24) !important;
        box-shadow: 0 28px 80px rgba(0,0,0,0.75) !important;
        backdrop-filter: blur(18px) !important;
        z-index: 10002 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(-18px) scale(0.96) !important;
        pointer-events: none !important;
        transition: 0.28s ease !important;
    }

    .nav-actions.active {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) scale(1) !important;
        pointer-events: auto !important;
    }

    .mobile-menu-title {
        display: block;
        padding: 6px 6px 14px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        margin-bottom: 4px;
    }

    .mobile-menu-title strong {
        display: block;
        color: var(--champagne);
        font-size: 20px;
        font-weight: 950;
    }

    .mobile-menu-title small {
        display: block;
        color: rgba(255,255,255,0.55);
        margin-top: 4px;
        font-weight: 700;
    }

    .nav-actions a {
        width: 100% !important;
        min-height: 54px;
        padding: 14px 18px !important;
        border-radius: 18px !important;
        background: rgba(255,255,255,0.075) !important;
        color: #fff !important;
        border: 1px solid rgba(255,255,255,0.10) !important;
        font-size: 15px !important;
        font-weight: 950 !important;
        box-shadow: none !important;
    }

    .nav-actions a:hover {
        background: linear-gradient(135deg, var(--champagne), var(--gold)) !important;
        color: #050505 !important;
        transform: translateY(-2px);
    }

    .hero-content {
        margin-top: 88px;
        max-width: 100%;
        padding: 0 8px;
    }

    .hero-content h1 {
        font-size: 44px;
        line-height: 1.02;
        letter-spacing: -1.3px;
    }

    .hero-content p {
        font-size: 17px;
        line-height: 1.65;
    }

    .stats {
        grid-template-columns: 1fr;
        margin-top: 22px;
        max-width: 680px;
    }

    .filters-section {
        margin-top: 34px;
    }

    .filters {
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .filters button,
    .reset-btn {
        grid-column: auto;
        width: 100%;
    }

    .talent-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .circle-photo {
        width: 172px !important;
        height: 172px !important;
    }
}

/* ===============================
   19. MOBILE HERO
================================ */
@media (max-width: 768px) {
    .hero {
        min-height: 560px !important;
        padding: 20px 18px !important;
        background-position: center 18% !important;
    }

    .hero::before {
        background:
            linear-gradient(to bottom, rgba(0,0,0,0.42), rgba(0,0,0,0.86)),
            radial-gradient(circle at 50% 14%, rgba(230,199,106,0.15), transparent 42%);
    }

    .hero-content {
        margin-top: 90px !important;
    }

    .hero-badge {
        font-size: 12px;
        padding: 9px 14px;
        margin-bottom: 16px;
    }

    .hero-content h1 {
        font-size: 38px !important;
        line-height: 1.08;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 15.5px !important;
        line-height: 1.62;
    }
}

/* ===============================
   20. SMALL MOBILE
================================ */
@media (max-width: 480px) {
    .hero {
        min-height: 540px !important;
        padding: 16px !important;
    }

    .navbar {
        padding: 10px 12px;
        border-radius: 22px;
    }

    .logo {
        font-size: 17px !important;
        letter-spacing: 0.3px;
    }

    .logo::before {
        margin-right: 6px;
        font-size: 11px;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
    }

    .nav-actions {
        top: 76px !important;
        left: 14px !important;
        right: 14px !important;
        border-radius: 26px !important;
    }

    .hero-content {
        margin-top: 76px !important;
    }

    .hero-badge {
        font-size: 11px;
        padding: 8px 12px;
        line-height: 1.3;
    }

    .hero-content h1 {
        font-size: 33px !important;
        letter-spacing: -0.8px;
    }

    .hero-content p {
        font-size: 14.5px !important;
        line-height: 1.6;
    }

    .stats {
        padding: 0 14px;
        gap: 14px;
    }

    .stats > div {
        padding: 24px 18px;
        border-radius: 26px;
    }

    .stats h2 {
        font-size: 32px;
    }

    .filters-section {
        padding: 0 14px;
    }

    .filters-section h2 {
        font-size: 27px;
    }

    .filters {
        border-radius: 24px;
    }

    .filters input,
    .filters select,
    .filters button,
    .reset-btn {
        min-height: 50px;
        border-radius: 16px;
        font-size: 14px;
    }

    .talent-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 14px;
        margin-top: 26px;
    }

    .talent-card {
        padding: 30px 16px 26px;
        border-radius: 30px;
    }

    .circle-photo {
        width: 220px !important;
        height: 220px !important;
    }

    .talent-card h3 {
        font-size: 21px;
    }

    .empty {
        padding: 36px 18px;
    }

    .viewer-close {
        top: 16px;
        right: 22px;
        font-size: 44px;
    }
}

/* ===============================
   21. EXTRA SMALL
================================ */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 29px !important;
    }

    .hero-content p {
        font-size: 14px !important;
    }

    .circle-photo {
        width: 196px !important;
        height: 196px !important;
    }

    .logo {
        font-size: 15px !important;
    }
    /* ===============================
 /* ===============================
   STRONG PREMIUM LIVE BACKGROUND
================================ */

/* animated gold orbs above page */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 15% 25%, rgba(230,199,106,0.32), transparent 18%),
        radial-gradient(circle at 85% 20%, rgba(212,175,55,0.24), transparent 20%),
        radial-gradient(circle at 50% 85%, rgba(230,199,106,0.20), transparent 24%);
    filter: blur(38px);
    opacity: 0.65;
    animation: strongGlowMove 12s ease-in-out infinite alternate;
}

@keyframes strongGlowMove {
    0% {
        transform: translate(-4%, -2%) scale(1);
    }
    50% {
        transform: translate(4%, 3%) scale(1.12);
    }
    100% {
        transform: translate(-2%, 4%) scale(1.05);
    }
}

/* keep content above animated background */
.hero,
.stats,
.filters-section,
.talent-grid,
footer {
    position: relative;
    z-index: 2;
}

/* moving shine inside hero */
.hero::before {
    animation: heroLightMove 8s ease-in-out infinite alternate;
}

@keyframes heroLightMove {
    0% {
        opacity: 0.65;
        transform: translateX(-2%);
    }
    100% {
        opacity: 1;
        transform: translateX(2%);
    }
}

/* visible gold shimmer line */
.hero::after {
    height: 2px !important;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(230,199,106,0.15),
        rgba(230,199,106,1),
        rgba(230,199,106,0.15),
        transparent
    ) !important;
    animation: goldLineMove 3s ease-in-out infinite;
}

@keyframes goldLineMove {
    0% {
        opacity: 0.35;
        transform: scaleX(0.35);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
    100% {
        opacity: 0.35;
        transform: scaleX(0.35);
    }
}

/* animated spotlight behind hero text */
.hero-content::before {
    content: "";
    position: absolute;
    inset: -90px;
    z-index: -1;
    background: radial-gradient(circle, rgba(230,199,106,0.34), transparent 55%);
    filter: blur(30px);
    opacity: 0.65;
    animation: textGlowPulse 3.8s ease-in-out infinite alternate;
}

@keyframes textGlowPulse {
    from {
        transform: scale(0.92);
        opacity: 0.35;
    }
    to {
        transform: scale(1.08);
        opacity: 0.85;
    }
}

/* small floating gold particles */
.hero {
    isolation: isolate;
}

.hero .navbar::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background-image:
        radial-gradient(circle, rgba(230,199,106,0.55) 1px, transparent 1.5px),
        radial-gradient(circle, rgba(255,255,255,0.28) 1px, transparent 1.5px);
    background-size: 90px 90px, 130px 130px;
    background-position: 0 0, 30px 40px;
    opacity: 0.22;
    animation: particlesMove 18s linear infinite;
}

@keyframes particlesMove {
    from {
        background-position: 0 0, 30px 40px;
    }
    to {
        background-position: 180px 260px, 230px 300px;
    }
}

/* mobile stronger visibility */
@media (max-width: 768px) {
    body::after {
        opacity: 0.85;
        filter: blur(42px);
    }

    .hero-content::before {
        inset: -55px;
        opacity: 0.75;
    }
    
    /* ===============================
   PREMIUM PRO TALENT CARD
================================ */

.pro-card {
    border-color: rgba(230,199,106,0.72) !important;
    background:
        radial-gradient(circle at 50% 0%, rgba(230,199,106,0.22), transparent 46%),
        linear-gradient(145deg, rgba(255,255,255,0.095), rgba(255,255,255,0.025)),
        rgba(10,10,12,0.98) !important;
    box-shadow:
        0 32px 90px rgba(0,0,0,0.68),
        0 0 42px rgba(230,199,106,0.18) !important;
}

.pro-card::before {
    opacity: 1 !important;
    background:
        radial-gradient(circle at top, rgba(230,199,106,0.28), transparent 48%),
        linear-gradient(to bottom, transparent, rgba(0,0,0,0.26)) !important;
}

.pro-card::after {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 26px;
    border: 1px solid rgba(230,199,106,0.20);
    pointer-events: none;
    z-index: 1;
}

.pro-card:hover {
    transform: translateY(-12px) scale(1.018) !important;
    border-color: rgba(230,199,106,0.95) !important;
    box-shadow:
        0 38px 100px rgba(0,0,0,0.72),
        0 0 58px rgba(230,199,106,0.26) !important;
}

.pro-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 13px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fff3b0, #e6c76a 45%, #d4af37);
    color: #050505;
    font-weight: 950;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow:
        0 0 12px rgba(230,199,106,0.65),
        0 10px 28px rgba(0,0,0,0.45);
    animation: proBadgeGlow 2.2s ease-in-out infinite alternate;
}

.pro-star {
    font-size: 12px;
    line-height: 1;
}

@keyframes proBadgeGlow {
    0% {
        box-shadow:
            0 0 8px rgba(230,199,106,0.45),
            0 10px 28px rgba(0,0,0,0.45);
        transform: translateY(0);
    }

    100% {
        box-shadow:
            0 0 18px rgba(230,199,106,0.85),
            0 14px 34px rgba(0,0,0,0.55);
        transform: translateY(-1px);
    }
}

.pro-photo {
    border-color: rgba(230,199,106,0.90) !important;
    box-shadow:
        0 24px 62px rgba(0,0,0,0.70),
        0 0 0 8px rgba(230,199,106,0.055),
        0 0 36px rgba(230,199,106,0.24) !important;
}

.pro-caption {
    position: relative;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 12px auto 0;
    padding: 7px 13px;
    border-radius: 999px;
    color: #e6c76a;
    background: rgba(230,199,106,0.10);
    border: 1px solid rgba(230,199,106,0.26);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.3px;
}

/* Make normal cards stay below PRO cards visually */
.talent-card:not(.pro-card) {
    opacity: 0.96;
}

/* Mobile PRO badge/card adjustment */
@media (max-width: 600px) {
    .pro-badge {
        top: 13px;
        right: 13px;
        padding: 7px 11px;
        font-size: 11px;
    }

    .pro-card:hover {
        transform: translateY(-6px) scale(1.01) !important;
    }

    .pro-card::after {
        inset: 8px;
        border-radius: 24px;
    }

}

