.contact-wrapp {
    padding: 15px 0px 0px 0px !important;
    border-radius: 28px 28px 0 0;
    min-height: 100vh;
}


/* ===== PAGE ===== */
.artist-page {
    width: 100%;
    padding: 2px 20px 0px 20px;
}

.artist-banner {
    margin-bottom: 10px;
    display: grid;
    /* 🔥 MOST IMPORTANT */
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
}

/* ===== TITLE ===== */
.showcase-title {
    text-align: center;
    color: #fff;
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 700;
    letter-spacing: 1px;
}


.glass-badge {
    font-size: clamp(16px, 2.5vw, 20px);
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 16px;
    border-radius: 999px;

    color: #fff;
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 600;

    width: auto;
    max-width: fit-content;
    white-space: nowrap;
    flex: 0 0 auto;

    /* glass effect */
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.15);

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* green live dot */
.glass-badge .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #22c55e;

    animation: pulse 1.5s infinite;
}

/* pulse animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
    }

    70% {
        transform: scale(1.2);
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* mobile tuning */
@media (max-width: 768px) {
    .glass-badge {
        font-size: 13px;
        padding: 8px 12px;
    }

    .glass-badge .dot {
        width: 7px;
        height: 7px;
    }

    .artist-banner {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
    }

    .showcase-title {
        grid-column: 1 / -1;
        text-align: center;
        order: -1;
        /* 🔥 upar lane ke liye */
        font-size: 24px !important;
    }

    .glass-badge {
        grid-column: 1 / 2;
    }

    .wave-badge {
        grid-column: 2 / 3;
        justify-self: end;
    }
}

.main-title {
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
}

.sub-title {
    font-size: 16px;
    color: #aaa;
    margin-top: 4px;
}

/* ===== SECTION ===== */
.artist-section {
    display: flex;
    gap: 40px;
    align-items: center;

    background: rgba(255, 255, 255, 0.05);
    border-radius: 22px;
    padding: 0px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

/* ===== IMAGE ===== */
.artist-img {
    flex: 1.2;
    border-radius: 18px 0px 0px 18px;
    overflow: hidden;
}

.artist-img img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    background: #000;
}

/* ===== SLIDER ===== */
.img-slider {
    overflow: hidden;
    width: 100%;
    border-radius: 18px 0px 0px 18px;
}

.img-track {
    display: flex;
    width: calc(100% * 4);
    /* total images count (4 images) */
    animation: scrollSlider 25s linear infinite;
}

.img-track img {
    width: calc(100% / 4);
    /* total images count */
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

/* smooth infinite scroll */
@keyframes scrollSlider {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===== CONTENT ===== */
.artist-info {
    flex: 1;
    margin: 5px 20px 25px 20px;
}

.artist-desc {
    text-align: left;
    font-size: 16px;
    line-height: 1.8;
    color: #ddd;
}

/* ===== BUTTONS ===== */
.artist-actions {
    margin-top: 22px;
    display: flex;
    gap: 14px;
}

.book-btnn {
    padding: 12px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffffff, #d4d4d4);
    color: #000;
    font-weight: 600;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    text-align: center;
}

.book-btnn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.insta-btn {
    padding: 8px 12px;
    border-radius: 999px;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 12px;
    text-decoration: none;
    transition: 0.3s;
    text-align: center;
}

.insta-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ===== WAVE ===== */
.fanaa-wave {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
    /* 🔥 prevent wrap */

}

.fanaa-wave li {
    list-style: none;
    width: 4px;
    height: 20px;
    border-radius: 10px;
    background: #545FE5;
    animation: fanaa-wave 1s ease-in-out infinite;
}

/* delays */
.fanaa-wave li:nth-child(1) {
    animation-delay: 0s;
}

.fanaa-wave li:nth-child(2) {
    animation-delay: 0.1s;
}

.fanaa-wave li:nth-child(3) {
    animation-delay: 0.2s;
}

.fanaa-wave li:nth-child(4) {
    animation-delay: 0.3s;
}

.fanaa-wave li:nth-child(5) {
    animation-delay: 0.4s;
}

.fanaa-wave li:nth-child(6) {
    animation-delay: 0.5s;
}

.fanaa-wave li:nth-child(7) {
    animation-delay: 0.6s;
}

.fanaa-wave li:nth-child(8) {
    animation-delay: 0.7s;
}

.fanaa-wave li:nth-child(9) {
    animation-delay: 0.8s;
}

.fanaa-wave li:nth-child(10) {
    animation-delay: 0.9s;
}

@keyframes fanaa-wave {

    0%,
    100% {
        transform: scaleY(0.4);
    }

    50% {
        transform: scaleY(1);
    }
}

.wave-badge {
    justify-content: center;
    /* center align */
    padding: 8px 12px;
    /* thoda adjust */
    margin-right: 3px !important;
}

/* wave reset inside badge */
.wave-badge .fanaa-wave {
    margin: 0;
    padding: 0;
    gap: 3px;
}

/* better proportion */
.wave-badge .fanaa-wave li {
    height: 18px;
    width: 2px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

    .img-slider {
        height: 250px;
    }

    .artist-page {
        padding: 0px 20px 0px 20px;
    }

    .artist-section {
        flex-direction: column;
        gap: 18px;
    }

    .artist-img img {
        max-height: 250px;
    }


    .artist-actions {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }

    .book-btnn,
    .insta-btn {
        width: auto;
        flex: 0 0 auto;
        text-align: center;
    }

    .main-title {
        font-size: 24px;
        /* 🔥 space fix */
    }

    .fanaa-wave {
        transform: scale(0.6);
        /* 🔥 fit mobile */
    }

    .artist-desc {
        text-align: left;
        font-size: 13px;
        line-height: 1.8;
        color: #ddd;
    }


}

/* ===== OPEN BUTTON ===== */
.video-open-btn {
    padding: 12px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff4d6d, #ff758f);
    color: #fff;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.video-open-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 77, 109, 0.4);
}

/* ===== MODAL ===== */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    visibility: hidden;

    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 9999;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

/* ===== VIDEO WRAPPER ===== */
.video-wrapper {
    position: relative;
    width: min(92vw, 380px);
    /* 🔥 responsive */
    height: min(80vh, 640px);

    border-radius: 22px;
    overflow: hidden;

    transform: scale(0.85) translateY(40px);
    opacity: 0;

    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.3s ease;

    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
}

.video-modal.active .video-wrapper {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* ===== VIDEO ===== */
.video-wrapper video {
    border-radius: 22px;
    /* ✅ SAME as wrapper */
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 🔥 better mobile look */
    background: #000;
}

/* ===== CLOSE BUTTON (GLASS) ===== */
.video-close {
    position: absolute;
    bottom: 12px;
    right: 12px;

    width: 40px;
    height: 40px;

    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);

    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;

    transition: all 0.3s ease;
}

.video-close:hover {
    background: #ff4d6d;
    transform: rotate(90deg) scale(1.1);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .video-wrapper {
        width: 92%;
        height: 75vh;
    }
}

/* ========================================================= */
/* ===== CONTROLS BASE ===== */
.video-controls {
    position: absolute;
    inset: 0;
}

/* ===== iOS STYLE CONTROLS ===== */
video::-webkit-media-controls {
    display: none !important;
}

.video-controls.ios {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 14px;

    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0.1),
            transparent);

    transition: opacity 0.3s ease;
}

/* ===== CENTER PLAY (GLASS PREMIUM) ===== */
.center-play {
    position: absolute;
    inset: 0;
    margin: auto;

    width: 85px;
    height: 85px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;
    color: #fff;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, 0.2);

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.6),
        inset 0 0 10px rgba(255, 255, 255, 0.1);

    cursor: pointer;
    transition: all 0.25s ease;
}

.center-play:active {
    transform: scale(0.88);
}

/* auto hide when playing */
.video-wrapper.playing .center-play {
    opacity: 0;
    transform: scale(0.7);
}

/* ===== BOTTOM CONTROLS (GLASS BAR) ===== */
.bottom-controls {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 10px 14px;

    border-radius: 14px;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, 0.15);

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

/* time */
#time {
    font-size: 12px;
    color: #fff;
    opacity: 0.9;
}

/* progress bar */
.video-controls.ios #progressBar {
    appearance: none;
    height: 4px;
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.25);
    flex: 1;
}

/* thumb */
.video-controls.ios #progressBar::-webkit-slider-thumb {
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;

    background: #fff;
    border: 2px solid rgba(0, 0, 0, 0.4);

    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

/* mute button */
#muteBtn {
    width: 34px;
    height: 34px;

    border-radius: 50%;
    border: none;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    color: #fff;

    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);

    cursor: pointer;
}

/* ===== HIDE CONTROLS ===== */
.video-controls.hide {
    opacity: 0;
}

/* ===== MOBILE TUNING ===== */
@media (max-width: 768px) {
    .center-play {
        width: 70px;
        height: 70px;
        font-size: 26px;
    }

    .bottom-controls {
        padding: 8px 10px;
        gap: 8px;
    }

    .video-wrapper {
        width: 94vw;
        height: 78vh;
        border-radius: 20px;
    }

    .video-wrapper video {
        border-radius: 20px;
    }
}