/* ═══════════════════════════════════════════════════════════════
   KEYCHELE HOME PAGE STYLES — css/keychele-home.css
   Brand: Red #bf1339 | Gold #fec411 | Navy #052e64
═══════════════════════════════════════════════════════════════ */

/* ── BRAND TOKENS ── */
:root {
    --navy:    #052e64;
    --navy-d:  #031e44;
    --navy-m:  #0a4a99;
    --navy-l:  #e8eef8;
    --navy-xl: #f2f5fc;
    --gold:    #fec411;
    --gold-d:  #d9a70a;
    --gold-l:  #fffbea;
    --cr:      #bf1339;
    --cr-d:    #96102d;
    --cr-l:    #fce8ec;
    --white:   #ffffff;
    --g50:     #f8f9fd;
    --g100:    #eef1f9;
    --g200:    #dce2f0;
    --g400:    #8a97b8;
    --g600:    #4a5578;
    --green:   #16a34a;
    --fh:      'Montserrat', system-ui, sans-serif;
}

/* ═══════════════════════════════════════════════════
   1. HERO SECTION
═══════════════════════════════════════════════════ */
.kc-hero-section {
    position: relative;
    overflow: hidden;
    height: 72vh;
}
.kc-hero-img {
    width: 100%;
    height: 72vh;
    object-fit: cover;
    display: block;
}
.kc-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(5,46,100,.65) 0%,
        rgba(191,19,57,.35) 100%
    );
    z-index: 1;
    pointer-events: none;
}
.kc-hero-caption {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}
.kc-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(254,196,17,.18);
    border: 1px solid rgba(254,196,17,.4);
    color: var(--gold);
    font-family: var(--fh);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 16px;
}
.kc-hero-title {
    font-family: var(--fh);
    font-size: clamp(1.8rem, 4.5vw, 3.4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.kc-hero-title span { color: var(--gold); }
.kc-hero-sub {
    font-size: clamp(13px, 1.6vw, 16px);
    color: rgba(255,255,255,.82);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 28px;
}
.kc-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}
.kc-hero-btn-main {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 32px;
    background: var(--cr);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: var(--fh);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: all .2s;
    box-shadow: 0 6px 20px rgba(191,19,57,.4);
}
.kc-hero-btn-main:hover {
    background: var(--cr-d);
    color: #fff;
    transform: translateY(-2px);
}
.kc-hero-btn-out {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 32px;
    border: 2px solid rgba(255,255,255,.7);
    color: #fff;
    border-radius: 50px;
    font-family: var(--fh);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(6px);
}
.kc-hero-btn-out:hover {
    background: rgba(255,255,255,.2);
    color: #fff;
    border-color: #fff;
}

/* Carousel controls */
.kc-hero-prev, .kc-hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(0,0,0,.45);
    border: none;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .25s, transform .25s;
}
.kc-hero-prev:hover, .kc-hero-next:hover {
    background: var(--cr);
    transform: translateY(-50%) scale(1.1);
}
.kc-hero-prev { left: 18px; }
.kc-hero-next { right: 18px; }
.kc-hero-prev i, .kc-hero-next i { color: #fff; font-size: 1.1rem; }

/* Carousel dots */
.kc-hero-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}
.kc-hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    transition: all .25s;
    cursor: pointer;
}
.kc-hero-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 991px) {
    .kc-hero-section,
    .kc-hero-img { height: 55vh; }
}
@media (max-width: 576px) {
    .kc-hero-section,
    .kc-hero-img { height: 46vh; }
    .kc-hero-prev, .kc-hero-next { width: 36px; height: 36px; font-size: .9rem; }
}

/* ═══════════════════════════════════════════════════
   2. ADVERTS STRIP
═══════════════════════════════════════════════════ */
.kc-advert-section {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid var(--g100);
}
.kc-advert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.kc-advert-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 16px 10px 14px;
    border-radius: 14px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
    border: 1.5px solid transparent;
    text-align: center;
    min-width: 0;
}
.kc-advert-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,.14);
}
.kc-advert-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .07;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23fff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.kc-advert-card-1 { background: linear-gradient(135deg, var(--navy), var(--navy-m)); border-color: rgba(5,46,100,.2); }
.kc-advert-card-2 { background: linear-gradient(135deg, var(--cr), #e8143f); border-color: rgba(191,19,57,.2); }
.kc-advert-card-3 { background: linear-gradient(135deg, #d9860a, var(--gold)); border-color: rgba(254,196,17,.3); }

.kc-advert-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
    backdrop-filter: blur(4px);
}
.kc-advert-text { flex: 1; min-width: 0; }
.kc-advert-text h6 {
    font-family: var(--fh);
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.kc-advert-text p {
    font-size: 10px;
    color: rgba(255,255,255,.78);
    margin: 0;
    line-height: 1.4;
}
.kc-advert-arrow { display: none; }

@media (min-width: 640px) {
    .kc-advert-section { padding: 28px 0; }
    .kc-advert-grid { gap: 16px; }
    .kc-advert-card {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        padding: 18px;
        gap: 14px;
        text-align: left;
    }
    .kc-advert-icon { width: 48px; height: 48px; font-size: 22px; }
    .kc-advert-text h6 { font-size: 14px; }
    .kc-advert-text p  { font-size: 11px; }
    .kc-advert-arrow {
        display: flex;
        margin-left: auto;
        flex-shrink: 0;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: rgba(255,255,255,.2);
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 12px;
        transition: background .2s;
    }
    .kc-advert-card:hover .kc-advert-arrow { background: rgba(255,255,255,.35); }
}
@media (max-width: 399px) {
    .kc-advert-text p { display: none; }
    .kc-advert-icon { width: 38px; height: 38px; font-size: 16px; }
    .kc-advert-text h6 { font-size: 11px; }
    .kc-advert-card { padding: 14px 8px 12px; }
}

/* ════════════════════════════════════════════════════════
   3. IMAGE AD BANNER
════════════════════════════════════════════════════════ */
.kc-ad-banner {
    width: 100%;
    padding: 0.6rem 0 0.4rem;
    box-sizing: border-box;
}
.kc-ad-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
    padding: 0 2px;
}
.kc-ad-label::before,
.kc-ad-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}
.kc-ad-sponsored {
    font-size: 10px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
    font-weight: 500;
}
.kc-ad-slider-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #000;
    line-height: 0;
}
.kc-ad-track {
    display: flex;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.kc-ad-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
}
.kc-ad-slide a { display: block; width: 100%; line-height: 0; }
.kc-ad-img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 970 / 350;
    object-fit: contain;
    object-position: center;
    background: #000;
}
.kc-ad-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,.4);
    color: #fff;
    border: none;
    cursor: pointer;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, opacity .2s;
    z-index: 3;
    padding: 0;
    opacity: .7;
}
.kc-ad-arrow:hover { background: rgba(0,0,0,.65); opacity: 1; }
.kc-ad-prev { left: 10px; }
.kc-ad-next { right: 10px; }
.kc-ad-badge {
    position: absolute;
    bottom: 8px;
    left: 10px;
    font-size: 10px;
    font-weight: 500;
    color: #fff;
    background: rgba(0,0,0,.5);
    border-radius: 3px;
    padding: 2px 6px;
    letter-spacing: 0.05em;
    pointer-events: none;
    z-index: 3;
    line-height: 1.4;
}
.kc-ad-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    min-height: 14px;
}
.kc-ad-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .25s, transform .25s;
    flex-shrink: 0;
}
.kc-ad-dot.active { background: #374151; transform: scale(1.4); }

@media (min-width: 1200px) { .kc-ad-img { aspect-ratio: 970 / 350; } }
@media (max-width: 1024px) { .kc-ad-img { aspect-ratio: 728 / 300; } }
@media (max-width: 768px) {
    .kc-ad-img { aspect-ratio: 600 / 280; }
    .kc-ad-arrow { width: 28px; height: 28px; font-size: 20px; }
    .kc-ad-prev { left: 6px; }
    .kc-ad-next { right: 6px; }
}
@media (max-width: 480px) {
    .kc-ad-img { aspect-ratio: 3 / 2; }
    .kc-ad-arrow { width: 24px; height: 24px; font-size: 17px; opacity: .85; }
    .kc-ad-prev { left: 4px; }
    .kc-ad-next { right: 4px; }
    .kc-ad-badge { font-size: 9px; padding: 1px 5px; bottom: 5px; left: 6px; }
    .kc-ad-dots { gap: 5px; margin-top: 6px; }
    .kc-ad-dot { width: 5px; height: 5px; }
}
@media (max-width: 360px) {
    .kc-ad-img { aspect-ratio: 5 / 3; }
    .kc-ad-arrow { width: 22px; height: 22px; font-size: 15px; }
}

/* ═══════════════════════════════════════════════════
   4. HUB SECTION — Tabbed Explorer
═══════════════════════════════════════════════════ */
.kc-hub-section {
    background: var(--g50);
    padding: 60px 0 80px;
    overflow-x: hidden;
}
.kc-hub-header {
    text-align: center;
    margin-bottom: 36px;
}
.kc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(254,196,17,.12);
    border: 1px solid rgba(254,196,17,.35);
    color: var(--gold-d);
    font-family: var(--fh);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 14px;
}
.kc-section-title {
    font-family: var(--fh);
    font-weight: 900;
    font-size: clamp(22px, 4vw, 34px);
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 12px;
}
.kc-section-title em { font-style: normal; color: var(--cr); }

/* ── Tab Navigation ── */
.kc-tabs-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #fff;
    border: 1.5px solid var(--g100);
    border-radius: 50px;
    padding: 4px;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 32px;
    box-shadow: 0 2px 12px rgba(5,46,100,.07);
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.kc-tabs-nav::-webkit-scrollbar { display: none; }
.kc-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    border: none;
    border-radius: 50px;
    background: transparent;
    font-family: var(--fh);
    font-size: 12px;
    font-weight: 700;
    color: var(--g600);
    cursor: pointer;
    transition: all .22s;
    white-space: nowrap;
    flex-shrink: 0;
}
.kc-tab-btn i { font-size: 11px; }
.kc-tab-btn:hover { color: var(--navy); background: var(--g50); }
.kc-tab-btn.active {
    background: var(--navy);
    color: #fff;
    box-shadow: 0 4px 14px rgba(5,46,100,.25);
}
.kc-tab-btn.active i { color: var(--gold); }
.kc-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 9px;
    background: rgba(255,255,255,.2);
    font-size: 9px;
    font-weight: 800;
}
.kc-tab-btn:not(.active) .kc-tab-count { background: var(--g100); color: var(--navy); }
.kc-tab-panel { display: none; }
.kc-tab-panel.active { display: block; }

/* ── Grid ── */
.kc-hub-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
}
@media (min-width: 640px)  { .kc-hub-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 1024px) { .kc-hub-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; } }

/* ── Lazy load animation ── */
.kc-grid-item {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .38s ease, transform .38s ease;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}
.kc-grid-item.kc-in-view { opacity: 1; transform: translateY(0); }
.kc-item-hidden { display: none !important; }
.kc-grid-item:nth-child(2) { transition-delay: .04s; }
.kc-grid-item:nth-child(3) { transition-delay: .08s; }
.kc-grid-item:nth-child(4) { transition-delay: .12s; }
.kc-grid-item:nth-child(5) { transition-delay: .16s; }
.kc-grid-item:nth-child(6) { transition-delay: .20s; }
.kc-grid-item:nth-child(7) { transition-delay: .24s; }
.kc-grid-item:nth-child(8) { transition-delay: .28s; }

/* ══════════════════════════════════════════════════
   EVENT GRID CARD — synced with ticketstyle.css .ecard
══════════════════════════════════════════════════ */
.kc-ev-card {
    background: var(--white);
    border-radius: 12px;
    border: 1.5px solid var(--g100);
    box-shadow: 0 3px 12px rgba(5,46,100,.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .25s, box-shadow .25s, border-color .2s;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}
.kc-ev-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(5,46,100,.13);
    border-color: rgba(5,46,100,.12);
}
.kc-ev-card.kc-ev-past { filter: saturate(.6); }
.kc-ev-card.kc-ev-past:hover { filter: saturate(1); }

/* Image — 16:9 */
.kc-ev-img {
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
    background: var(--g100);
    flex-shrink: 0;
}
.kc-ev-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s;
}
.kc-ev-card:hover .kc-ev-img img { transform: scale(1.07); }

/* Gradient overlay */
.kc-ev-img-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,46,100,.6) 0%, transparent 55%);
}

/* Status badge — top left */
.kc-ev-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-family: var(--fh);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 7px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
    white-space: nowrap;
    line-height: 1;
}
.kc-ev-badge.upcoming {
    background: rgba(5,46,100,.85);
    color: var(--gold);
    border: 1px solid rgba(254,196,17,.3);
}
.kc-ev-badge.past {
    background: rgba(50,55,70,.8);
    color: rgba(255,255,255,.65);
}
.kc-ev-badge.live {
    background: rgba(22,163,74,.9);
    color: #fff;
    animation: kcLivePulse 2s infinite;
}
@keyframes kcLivePulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(22,163,74,.5); }
    50%      { box-shadow: 0 0 0 6px rgba(22,163,74,0); }
}

/* Countdown — top right */
.kc-ev-cd {
    position: absolute;
    top: 6px;
    right: 6px;
    font-family: var(--fh);
    font-size: 7px;
    font-weight: 800;
    padding: 3px 7px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
    line-height: 1;
    white-space: nowrap;
}
.kc-ev-cd.soon  { background: rgba(191,19,57,.9); color: #fff; }
.kc-ev-cd.days  { background: rgba(254,196,17,.9); color: var(--navy); }
.kc-ev-cd.ended { background: rgba(40,45,60,.8); color: rgba(255,255,255,.5); }

/* Price — bottom left plain text */
.kc-ev-price {
    position: absolute;
    bottom: 7px;
    left: 8px;
    font-family: var(--fh);
    font-size: 10px;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0,0,0,.5);
    line-height: 1;
    white-space: nowrap;
}
.kc-ev-price.free { color: #6ee7a4; }

/* Card body */
.kc-ev-body {
    padding: 10px 11px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
}

/* Title */
.kc-ev-title {
    font-family: var(--fh);
    font-weight: 800;
    font-size: 12px;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Host row */
.kc-ev-host {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 7px;
    min-width: 0;
    overflow: hidden;
}
.kc-ev-host img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--navy-l);
    flex-shrink: 0;
}
.kc-ev-host span {
    font-size: 10px;
    color: var(--g400);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.kc-ev-host strong { color: var(--navy); }

/* Meta rows */
.kc-ev-meta { display: flex; flex-direction: column; gap: 2px; margin-bottom: 8px; }
.kc-ev-meta-row {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    color: var(--g600);
    min-width: 0;
    overflow: hidden;
}
.kc-ev-meta-row i {
    color: var(--navy);
    font-size: 9px;
    width: 11px;
    flex-shrink: 0;
}

/* Separator */
.kc-ev-sep {
    height: 1px;
    background: var(--g100);
    margin: 2px 0 8px;
}

/* CTA button */
.kc-ev-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 8px 10px;
    border-radius: 8px;
    font-family: var(--fh);
    font-size: 10px;
    font-weight: 800;
    text-decoration: none;
    transition: background .2s, box-shadow .2s;
    margin-top: auto;
    border: none;
    cursor: pointer;
    text-align: center;
}
.kc-ev-cta.buy     { background: var(--cr); color: #fff; }
.kc-ev-cta.buy:hover { background: var(--cr-d); box-shadow: 0 4px 14px rgba(191,19,57,.35); }
.kc-ev-cta.free-t  { background: var(--green); color: #fff; }
.kc-ev-cta.free-t:hover { background: #138a3e; box-shadow: 0 4px 14px rgba(22,163,74,.3); }
.kc-ev-cta.ended   { background: var(--g100); color: var(--g400); cursor: default; }
.kc-ev-cta.soon-t  { background: var(--g100); color: var(--g400); cursor: default; }

/* ══════════════════════════════════════════════════
   CREATOR GRID CARD
══════════════════════════════════════════════════ */
.kc-cr-card {
    background: var(--white);
    border-radius: 14px;
    border: 1.5px solid var(--g100);
    box-shadow: 0 3px 12px rgba(5,46,100,.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .25s, box-shadow .25s;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}
.kc-cr-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(5,46,100,.13); }
.kc-cr-banner {
    height: 60px;
    background: linear-gradient(135deg, var(--navy), var(--navy-m));
    position: relative;
    flex-shrink: 0;
}
.kc-cr-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
    z-index: 2;
}
.kc-cr-av-wrap {
    display: flex;
    justify-content: center;
    margin-top: -32px;
    margin-bottom: 6px;
    position: relative;
    z-index: 5;
}
.kc-cr-av {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: 0 4px 12px rgba(5,46,100,.18);
    background: var(--g100);
}
.kc-cr-av-fb {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-m));
    border: 3px solid var(--white);
    box-shadow: 0 4px 12px rgba(5,46,100,.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fh);
    font-weight: 900;
    font-size: 22px;
    color: var(--gold);
}
.kc-cr-body {
    padding: 0 12px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 0;
}
.kc-cr-name {
    font-family: var(--fh);
    font-weight: 800;
    font-size: 12px;
    color: var(--navy);
    margin-bottom: 2px;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}
.kc-cr-uname {
    font-size: 10px;
    color: var(--cr);
    font-weight: 700;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}
.kc-cr-stats {
    display: flex;
    width: 100%;
    margin-bottom: 10px;
    border: 1.5px solid var(--g100);
    border-radius: 9px;
    overflow: hidden;
}
.kc-cr-stat {
    flex: 1;
    padding: 7px 3px;
    text-align: center;
    border-right: 1.5px solid var(--g100);
}
.kc-cr-stat:last-child { border-right: none; }
.kc-cr-stat-n { font-family: var(--fh); font-weight: 900; font-size: 13px; color: var(--navy); line-height: 1; }
.kc-cr-stat-l { font-size: 8px; color: var(--g400); font-weight: 600; letter-spacing: .8px; text-transform: uppercase; margin-top: 2px; }
.kc-cr-cta {
    width: 100%;
    padding: 8px 10px;
    background: var(--navy);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: var(--fh);
    font-size: 10px;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: background .2s, box-shadow .2s;
    margin-top: auto;
}
.kc-cr-cta:hover { background: var(--cr); color: #fff; box-shadow: 0 4px 12px rgba(191,19,57,.3); }

/* ══════════════════════════════════════════════════
   MUSIC GRID CARD
══════════════════════════════════════════════════ */
.kc-mu-card {
    background: var(--white);
    border-radius: 12px;
    border: 1.5px solid rgba(5,46,100,.07);
    box-shadow: 0 3px 12px rgba(5,46,100,.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .25s, box-shadow .25s;
    cursor: pointer;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}
.kc-mu-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(5,46,100,.12); }
.kc-mu-cover {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1e42, #052e64);
    flex-shrink: 0;
}
.kc-mu-cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s, filter .3s;
}
.kc-mu-card:hover .kc-mu-cover img { transform: scale(1.07); filter: brightness(.85); }
.kc-mu-cover-ph {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: rgba(254,196,17,.3);
}
.kc-mu-play-btn {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.kc-mu-play-btn .kc-play-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    color: #0d1b2a;
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(0,0,0,.4);
    transform: scale(0);
    transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.kc-mu-card:hover .kc-play-icon,
.kc-mu-play-btn.playing .kc-play-icon { transform: scale(1); }
.kc-mu-badge {
    position: absolute;
    top: 7px; left: 7px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: rgba(5,46,100,.8);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 7px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: 3px 7px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.15);
}
.kc-mu-hot-badge {
    position: absolute;
    top: 7px; right: 7px;
    background: rgba(191,19,57,.9);
    color: #fff;
    font-size: 7px;
    font-weight: 800;
    padding: 3px 7px;
    border-radius: 999px;
    animation: muHotPulse 2s infinite;
}
.kc-mu-new-badge {
    position: absolute;
    top: 7px; right: 7px;
    background: rgba(5,100,52,.9);
    color: #fff;
    font-size: 7px;
    font-weight: 800;
    padding: 3px 7px;
    border-radius: 999px;
}
@keyframes muHotPulse { 0%,100%{opacity:1} 50%{opacity:.7} }
.kc-mu-body { padding: 10px 11px 12px; flex: 1; display: flex; flex-direction: column; min-width: 0; }
.kc-mu-artist {
    font-size: 9px;
    font-weight: 700;
    color: var(--g400);
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.kc-mu-title {
    font-size: 12px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.kc-mu-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    margin-top: auto;
    padding-top: 7px;
    border-top: 1px solid var(--g100);
}
.kc-mu-free-tag {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 7px;
    border-radius: 999px;
}
.kc-mu-price { font-size: 12px; font-weight: 900; color: var(--navy); }
.kc-mu-cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, var(--cr), #e8143f);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 5px 9px;
    border-radius: 7px;
    text-transform: uppercase;
    letter-spacing: .03em;
}
.kc-mu-meta { display: flex; flex-wrap: wrap; gap: 6px; font-size: 9px; color: var(--g400); margin-top: 5px; }
.kc-mu-meta span { display: flex; align-items: center; gap: 3px; }
.kc-mu-meta i { font-size: 8px; color: var(--g200); }

/* ══════════════════════════════════════════════════
   MONTH PILLS ROW
══════════════════════════════════════════════════ */
.kc-month-pills-row {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 18px;
    overflow-x: auto;
    overflow-y: visible;
    flex-wrap: nowrap;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
}
.kc-month-pills-row::-webkit-scrollbar { display: none; }
button.kc-month-pill,
.kc-month-pill {
    -webkit-appearance: none;
    appearance: none;
    display: inline-flex;
    align-items: center;
    padding: 5px 13px;
    border: 1.5px solid var(--g200);
    border-radius: 20px;
    font-family: var(--fh);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--g600) !important;
    background: var(--white) !important;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all .18s;
    box-shadow: none !important;
    outline: none;
    margin: 0;
}
button.kc-month-pill:hover,
.kc-month-pill:hover { border-color: var(--navy); color: var(--navy) !important; background: var(--navy-l) !important; }
button.kc-month-pill.active,
.kc-month-pill.active { background: var(--navy) !important; color: #fff !important; border-color: var(--navy); box-shadow: 0 3px 10px rgba(5,46,100,.22) !important; }

/* ══════════════════════════════════════════════════
   TAB FILTER ROW
══════════════════════════════════════════════════ */
.kc-tab-filter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}
.kc-tab-filter-left { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.kc-filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    border: 1.5px solid var(--g200);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: var(--g600);
    background: var(--white);
    cursor: pointer;
    transition: all .18s;
    white-space: nowrap;
}
.kc-filter-pill:hover,
.kc-filter-pill.active { border-color: var(--navy); color: var(--navy); background: var(--navy-l); }
.kc-tab-search-wrap {
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--white);
    border: 1.5px solid var(--g200);
    border-radius: 30px;
    padding: 0 12px;
    height: 36px;
    transition: border-color .2s;
    flex: 1;
    min-width: 0;
}
.kc-tab-search-wrap:focus-within { border-color: var(--navy); }
.kc-tab-search-wrap i { color: var(--g400); font-size: 11px; flex-shrink: 0; }
.kc-tab-search-wrap input {
    border: none;
    outline: none;
    font-size: 12px;
    color: var(--navy);
    background: transparent;
    flex: 1;
    min-width: 0;
    width: 100%;
}
.kc-tab-search-wrap input::placeholder { color: var(--g400); }
@media (max-width: 639px) {
    .kc-tab-filter-row { flex-direction: column; align-items: stretch; }
    .kc-tab-filter-left { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; padding-bottom: 2px; }
    .kc-tab-filter-left::-webkit-scrollbar { display: none; }
    .kc-tab-search-wrap { width: 100%; }
}

/* ═══════════════════════════════════════════════════
   5. MINI PLAYER
═══════════════════════════════════════════════════ */
.kc-mini-player {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    gap: 14px;
    background: rgba(5,30,68,.97);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 10px 20px;
    box-shadow: 0 -8px 32px rgba(0,0,0,.4);
    animation: playerSlideUp .3s cubic-bezier(.16,1,.3,1) both;
}
.kc-mini-player.show { display: flex; }
@keyframes playerSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}
.kc-mp-cover {
    width: 44px; height: 44px;
    border-radius: 10px;
    flex-shrink: 0;
    background: #1a2744;
    border: 1px solid rgba(255,255,255,.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: rgba(255,255,255,.3); overflow: hidden;
}
.kc-mp-cover img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
.kc-mp-info { flex-shrink: 0; min-width: 0; max-width: 160px; }
.kc-mp-title  { font-size: .78rem; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.kc-mp-artist { font-size: .65rem; color: rgba(255,255,255,.45); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.kc-mp-controls { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.kc-mp-ctrl {
    width: 34px; height: 34px; border-radius: 50%; border: none; cursor: pointer;
    background: rgba(255,255,255,.08); color: rgba(255,255,255,.6);
    display: flex; align-items: center; justify-content: center; font-size: .78rem;
    transition: background .15s, color .15s;
}
.kc-mp-ctrl:hover { background: rgba(255,255,255,.15); color: #fff; }
.kc-mp-ctrl.play-btn {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--cr), #e8143f);
    color: #fff; font-size: .88rem;
    box-shadow: 0 3px 14px rgba(191,19,57,.4);
}
.kc-mp-ctrl.play-btn:hover { background: linear-gradient(135deg, #d4163f, #ff2050); }
.kc-mp-progress { flex: 1; min-width: 0; }
.kc-mp-bar-wrap { cursor: pointer; padding: 6px 0; }
.kc-mp-bar { width: 100%; height: 4px; border-radius: 999px; background: rgba(255,255,255,.12); overflow: hidden; }
.kc-mp-fill { height: 100%; border-radius: 999px; width: 0%; background: linear-gradient(90deg, var(--cr), var(--gold)); transition: width .3s linear; }
.kc-mp-times { display: flex; justify-content: space-between; font-size: .6rem; color: rgba(255,255,255,.35); margin-top: 3px; }
.kc-mp-close {
    flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; border: none; cursor: pointer;
    background: rgba(255,255,255,.07); color: rgba(255,255,255,.4);
    display: flex; align-items: center; justify-content: center; font-size: .72rem;
    transition: background .15s, color .15s;
}
.kc-mp-close:hover { background: rgba(191,19,57,.3); color: #fff; }
@media (max-width: 540px) {
    .kc-mini-player { gap: 10px; padding: 10px 14px; }
    .kc-mp-info { display: none; }
    .kc-mp-progress { flex: 1; }
}