/**
 * DJ Single Page Styles — Neomorphism UI
 * PHP/markup değişmeden, mevcut tema tokenleri ile çalışır.
 * Tüm ekran boyutlarına uyumlu (320px → 2560px).
 */

:root {
    --dj-accent: var(--ferah-accent, #ff7a18);
    --dj-accent-2: var(--ferah-accent-2, #ff9500);
    --dj-bg: var(--ferah-bg, #0f1216);
    --dj-bg-secondary: var(--ferah-bg-secondary, #181c23);
    --dj-border: var(--ferah-border, #2a303b);
    --dj-text: var(--ferah-text, #e8eaed);
    --dj-text-muted: var(--ferah-text-muted, #8b93a3);
    --dj-radius-lg: var(--ferah-radius-lg, 20px);
    --dj-radius-sm: var(--ferah-radius-sm, 12px);

    /* Neomorphism katmanları */
    --dj-surface: color-mix(in srgb, var(--dj-bg-secondary) 88%, #fff 2%);
    --dj-surface-2: color-mix(in srgb, var(--dj-bg-secondary) 94%, #000 6%);
    --dj-light: color-mix(in srgb, var(--dj-bg-secondary) 70%, #ffffff 30%);
    --dj-shadow: color-mix(in srgb, var(--dj-bg) 40%, #000000 60%);

    --neu-out: 8px 8px 18px var(--dj-shadow), -8px -8px 18px color-mix(in srgb, var(--dj-light) 26%, transparent);
    --neu-out-sm: 4px 4px 10px var(--dj-shadow), -4px -4px 10px color-mix(in srgb, var(--dj-light) 22%, transparent);
    --neu-out-lg: 14px 14px 32px var(--dj-shadow), -12px -12px 28px color-mix(in srgb, var(--dj-light) 22%, transparent);
    --neu-in: inset 5px 5px 12px var(--dj-shadow), inset -5px -5px 12px color-mix(in srgb, var(--dj-light) 20%, transparent);
    --neu-in-sm: inset 3px 3px 7px var(--dj-shadow), inset -3px -3px 7px color-mix(in srgb, var(--dj-light) 18%, transparent);
    --dj-ease: cubic-bezier(.22, .61, .36, 1);
}

/* ========== GENEL ========== */
.dj-single-main {
    padding: clamp(16px, 3vw, 40px) clamp(12px, 3vw, 32px) 96px;
    background: var(--dj-bg);
}

.dj-single-main .single-layout {
    width: 100%;
    max-width: 1240px;
    margin-inline: auto;
    display: grid;
    gap: clamp(18px, 2.4vw, 28px);
    min-width: 0;
}

/* ========== HERO ========== */
.dj-single-hero {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(20px, 3vw, 40px);
    align-items: center;
    padding: clamp(22px, 3.4vw, 46px);
    background: var(--dj-surface);
    border: 1px solid color-mix(in srgb, var(--dj-border) 50%, transparent);
    border-radius: calc(var(--dj-radius-lg) + 10px);
    box-shadow: var(--neu-out-lg);
    overflow: hidden;
}

.dj-single-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(700px 320px at 88% -25%, color-mix(in srgb, var(--dj-accent) 22%, transparent), transparent 62%);
    pointer-events: none;
}

@media (min-width: 880px) {
    .dj-single-hero {
        grid-template-columns: minmax(0, 1fr) clamp(240px, 28vw, 340px);
    }
}

.dj-single-hero__content {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.dj-single-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    margin-bottom: 16px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--dj-accent), var(--dj-accent-2));
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: .5px;
    box-shadow: 5px 5px 14px var(--dj-shadow), inset 0 1px 0 rgba(255, 255, 255, .3);
}

.dj-single-live-badge .dot {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #fff;
    animation: djLivePulse 1.2s ease-in-out infinite;
}

.dj-single-live-badge small {
    margin-left: 4px;
    opacity: .85;
    font-weight: 600;
}

@keyframes djLivePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.35); opacity: .6; }
}

.dj-single-title {
    margin: 0 0 8px;
    font-size: clamp(27px, 5vw, 50px);
    line-height: 1.06;
    font-weight: 800;
    letter-spacing: -.8px;
    color: var(--dj-text);
    text-shadow: 1px 1px 2px var(--dj-shadow), -1px -1px 1px color-mix(in srgb, var(--dj-light) 30%, transparent);
    overflow-wrap: anywhere;
}

.dj-single-role {
    font-size: clamp(14px, 1.5vw, 17px);
    font-weight: 700;
    letter-spacing: .3px;
    color: var(--dj-accent);
}

.dj-single-program {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    margin-top: 14px;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--dj-surface-2);
    box-shadow: var(--neu-in-sm);
    color: var(--dj-text-muted);
    font-size: 13.5px;
}

.dj-single-program strong {
    color: var(--dj-text);
    font-weight: 700;
}

.dj-single-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

/* ========== BUTONLAR ========== */
.single-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    min-height: 46px;
    border: 0;
    border-radius: 999px;
    background: var(--dj-surface);
    box-shadow: var(--neu-out-sm);
    color: var(--dj-text);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: box-shadow .22s var(--dj-ease), transform .22s var(--dj-ease), color .22s var(--dj-ease);
}

.single-hero-btn:hover,
.single-hero-btn:focus-visible {
    transform: translateY(-2px);
    color: var(--dj-accent);
    box-shadow: var(--neu-out);
    outline: none;
}

.single-hero-btn:active {
    transform: translateY(0);
    box-shadow: var(--neu-in-sm);
}

.single-hero-btn--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--dj-accent), var(--dj-accent-2));
    box-shadow: 6px 6px 16px var(--dj-shadow),
                -6px -6px 16px color-mix(in srgb, var(--dj-light) 20%, transparent),
                inset 0 1px 0 rgba(255, 255, 255, .28);
}

.single-hero-btn--primary:hover,
.single-hero-btn--primary:focus-visible {
    color: #fff;
    box-shadow: 10px 10px 24px var(--dj-shadow),
                -8px -8px 20px color-mix(in srgb, var(--dj-light) 18%, transparent),
                0 0 0 1px color-mix(in srgb, var(--dj-accent) 45%, transparent);
}

.single-hero-btn--primary:active {
    box-shadow: inset 4px 4px 10px rgba(0, 0, 0, .35), inset -3px -3px 8px rgba(255, 255, 255, .15);
}

/* ========== HERO FOTOĞRAF ========== */
.dj-single-hero__media {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.dj-single-photo-wrap {
    position: relative;
    width: min(300px, 72vw);
    aspect-ratio: 1 / 1;
    padding: 14px;
    border-radius: 50%;
    background: var(--dj-surface);
    box-shadow: var(--neu-out-lg);
}

.dj-single-photo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: var(--neu-in);
}

.dj-single-photo__live {
    position: absolute;
    left: 50%;
    bottom: 4px;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--dj-accent), var(--dj-accent-2));
    color: #fff;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 4px 4px 12px var(--dj-shadow), inset 0 1px 0 rgba(255, 255, 255, .3);
}

.dj-single-photo__live .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    animation: djLivePulse 1.2s ease-in-out infinite;
}

/* ========== HERO SOSYAL ========== */
.dj-single-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.dj-single-socials--hero {
    margin-top: 18px;
}

.dj-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.dj-social__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dj-surface);
    box-shadow: var(--neu-out-sm);
    color: var(--dj-text-muted);
    text-decoration: none;
    transition: box-shadow .22s var(--dj-ease), transform .22s var(--dj-ease), color .22s var(--dj-ease);
}

.dj-social__item svg {
    width: 24px;
    height: 24px;
}

.dj-social__item:hover,
.dj-social__item:focus-visible {
    transform: translateY(-2px);
    box-shadow: var(--neu-out);
    outline: none;
}

.dj-social__item:active {
    transform: translateY(0);
    box-shadow: var(--neu-in-sm);
}

.dj-social--big .dj-social__item,
.dj-socials--big .dj-social__item {
    width: 52px;
    height: 52px;
}

.dj-social--big .dj-social__item svg,
.dj-socials--big .dj-social__item svg {
    width: 24px;
    height: 24px;
}

.dj-social--twitter:hover { color: #1da1f2; }
.dj-social--instagram:hover { color: #e1306c; }
.dj-social--facebook:hover { color: #1877f2; }
.dj-social--youtube:hover { color: #ff0000; }
.dj-social--tiktok:hover { color: #25f4ee; }
.dj-social--spotify:hover { color: #1db954; }
.dj-social--website:hover { color: var(--dj-accent); }

.dj-single-social-section .dj-single-socials {
    gap: 14px;
}

/* ========== BİLGİ KARTLARI ========== */
.dj-single-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
    gap: clamp(12px, 1.8vw, 20px);
}

.dj-single-info__card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: var(--dj-surface);
    border: 1px solid color-mix(in srgb, var(--dj-border) 40%, transparent);
    border-radius: calc(var(--dj-radius-lg) + 2px);
    box-shadow: var(--neu-out);
    min-width: 0;
    transition: box-shadow .24s var(--dj-ease), transform .24s var(--dj-ease);
}

.dj-single-info__card:hover {
    transform: translateY(-3px);
    box-shadow: var(--neu-out-lg);
}

.dj-single-info__card--hours {
    grid-column: 1 / -1;
    flex-direction: column;
}

.dj-single-info__icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--dj-surface-2);
    box-shadow: var(--neu-in-sm);
    color: var(--dj-accent);
}

.dj-single-info__icon svg {
    width: 20px;
    height: 20px;
}

.dj-single-info__card small {
    display: block;
    margin-bottom: 4px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: var(--dj-text-muted);
}

.dj-single-info__card p {
    margin: 0;
    color: var(--dj-text);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

/* ========== YAYIN SAATLERİ ========== */
.dj-single-hours {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: 10px;
    width: 100%;
    margin: 4px 0 0;
    padding: 0;
    list-style: none;
}

.dj-single-hours li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 11px 16px;
    border-radius: 999px;
    background: var(--dj-surface-2);
    box-shadow: var(--neu-in-sm);
    font-size: 13.5px;
}

.dj-single-hours li .day {
    color: var(--dj-text-muted);
    font-weight: 600;
}

.dj-single-hours li .time {
    color: var(--dj-text);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.dj-single-hours li.is-today {
    background: var(--dj-surface);
    box-shadow: var(--neu-out-sm), inset 0 0 0 1px color-mix(in srgb, var(--dj-accent) 45%, transparent);
}

.dj-single-hours li.is-today .day {
    color: var(--dj-accent);
    font-weight: 800;
}

/* ========== BÖLÜMLER ========== */
.dj-single-section {
    padding: clamp(20px, 2.8vw, 32px);
    background: var(--dj-surface);
    border: 1px solid color-mix(in srgb, var(--dj-border) 40%, transparent);
    border-radius: calc(var(--dj-radius-lg) + 6px);
    box-shadow: var(--neu-out);
    min-width: 0;
}

.dj-single-section__title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    font-size: clamp(17px, 2vw, 21px);
    font-weight: 800;
    letter-spacing: -.2px;
    color: var(--dj-text);
}

.dj-single-section__title svg {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    padding: 8px;
    box-sizing: content-box;
    border-radius: 12px;
    background: var(--dj-surface-2);
    box-shadow: var(--neu-in-sm);
    color: var(--dj-accent);
}

.dj-single-bio__content {
    color: var(--dj-text-muted);
    font-size: clamp(14px, 1.4vw, 16px);
    line-height: 1.8;
}

.dj-single-bio__content p {
    margin: 0 0 14px;
}

.dj-single-bio__content p:last-child {
    margin-bottom: 0;
}

/* ========== PLAYLIST & EŞLEŞME ========== */
.dj-single-playlists__list,
.dj-single-match-names__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.dj-single-playlist,
.dj-single-match-names__list li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--dj-surface);
    box-shadow: var(--neu-out-sm);
    color: var(--dj-text);
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    overflow-wrap: anywhere;
    transition: box-shadow .22s var(--dj-ease), transform .22s var(--dj-ease), color .22s var(--dj-ease);
}

.dj-single-playlist:hover {
    transform: translateY(-2px);
    color: var(--dj-accent);
    box-shadow: var(--neu-out);
}

.dj-single-match-names__list li {
    box-shadow: var(--neu-in-sm);
    background: var(--dj-surface-2);
    color: var(--dj-text-muted);
}

/* ========== HAFTALIK PROGRAM ========== */
.dj-single-schedule__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: clamp(12px, 1.6vw, 16px);
}

.dj-schedule-day {
    padding: 16px;
    border-radius: var(--dj-radius-lg);
    background: var(--dj-surface-2);
    box-shadow: var(--neu-in-sm);
    min-width: 0;
}

.dj-schedule-day.is-today {
    background: var(--dj-surface);
    box-shadow: var(--neu-out-sm), inset 0 0 0 1px color-mix(in srgb, var(--dj-accent) 40%, transparent);
}

.dj-schedule-day h4 {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
    margin: 0 0 12px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .3px;
    color: var(--dj-text);
}

.dj-schedule-day.is-today h4 {
    color: var(--dj-accent);
}

.dj-schedule-day h4 small {
    font-size: 11px;
    font-weight: 600;
    color: var(--dj-text-muted);
}

.dj-schedule-day ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.dj-schedule-day li {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 10px 12px;
    border-radius: var(--dj-radius-sm);
    background: var(--dj-surface);
    box-shadow: var(--neu-out-sm);
}

.dj-schedule-time {
    font-size: 12px;
    font-weight: 800;
    color: var(--dj-accent);
    font-variant-numeric: tabular-nums;
}

.dj-schedule-program {
    font-size: 13px;
    color: var(--dj-text);
    overflow-wrap: anywhere;
}

.dj-schedule-empty {
    font-size: 12.5px;
    color: var(--dj-text-muted);
    font-style: italic;
}

/* ========== DİĞER DJ'LER ========== */
.dj-single-others__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 140px), 1fr));
    gap: clamp(12px, 1.6vw, 18px);
}

.dj-avatar-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 16px 12px;
    border-radius: var(--dj-radius-lg);
    background: var(--dj-surface);
    box-shadow: var(--neu-out-sm);
    text-align: center;
    text-decoration: none;
    min-width: 0;
    transition: box-shadow .24s var(--dj-ease), transform .24s var(--dj-ease);
}

.dj-avatar-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--neu-out);
}

.dj-avatar-card__photo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(64px, 9vw, 88px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: var(--dj-surface-2);
    box-shadow: var(--neu-in-sm);
    overflow: hidden;
}

.dj-avatar-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.dj-avatar-card__photo.is-live {
    box-shadow: var(--neu-in-sm), 0 0 0 2px color-mix(in srgb, var(--dj-accent) 65%, transparent);
}

.dj-avatar-card__photo .dot {
    position: absolute;
    right: 6px;
    bottom: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--dj-accent);
    box-shadow: 0 0 0 3px var(--dj-surface);
    animation: djLivePulse 1.2s ease-in-out infinite;
}

.dj-avatar-card__initial {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    color: color-mix(in srgb, var(--dj-text-muted) 70%, transparent);
}

.dj-avatar-card__name {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--dj-text);
    overflow-wrap: anywhere;
}

.dj-avatar-card small {
    font-size: 11.5px;
    color: var(--dj-text-muted);
}

/* ========== ALT GEZİNME ========== */
.dj-single-nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
}

@media (min-width: 720px) {
    .dj-single-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.dj-single-nav .single-nav-prev,
.dj-single-nav .single-nav-next {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: calc(var(--dj-radius-lg) + 2px);
    background: var(--dj-surface);
    box-shadow: var(--neu-out-sm);
    text-decoration: none;
    min-width: 0;
    transition: box-shadow .24s var(--dj-ease), transform .24s var(--dj-ease);
}

.dj-single-nav .single-nav-next {
    justify-content: flex-end;
    text-align: right;
    flex-direction: row-reverse;
}

.dj-single-nav .single-nav-prev:hover,
.dj-single-nav .single-nav-next:hover {
    transform: translateY(-3px);
    box-shadow: var(--neu-out);
}

.dj-nav-thumb {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--dj-surface-2);
    box-shadow: var(--neu-in-sm);
}

.dj-single-nav .single-nav-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: var(--dj-accent);
}

.dj-single-nav .single-nav-title {
    display: block;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--dj-text);
    overflow-wrap: anywhere;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 640px) {
    .dj-single-main {
        padding: 14px 12px 72px;
    }

    .dj-single-hero {
        padding: 20px 16px;
        text-align: center;
        justify-items: center;
    }

    .dj-single-hero__content {
        order: 2;
    }

    .dj-single-hero__media {
        order: 1;
    }

    .dj-single-hero-actions,
    .dj-single-socials--hero {
        justify-content: center;
    }

    .dj-single-hero-actions .single-hero-btn {
        flex: 1 1 100%;
    }

    .dj-single-photo-wrap {
        width: min(210px, 62vw);
        padding: 10px;
    }

    .dj-single-section {
        padding: 18px 14px;
    }

    .dj-single-info__card {
        padding: 16px 14px;
    }

    .dj-single-others__grid {
        grid-template-columns: repeat(auto-fill, minmax(min(100%, 110px), 1fr));
    }

    .dj-social--big .dj-social__item,
    .dj-socials--big .dj-social__item {
        width: 46px;
        height: 46px;
    }
}

@media (min-width: 1600px) {
    .dj-single-main .single-layout { max-width: 1360px; }
}

@media (prefers-reduced-motion: reduce) {
    .dj-single-info__card,
    .dj-avatar-card,
    .dj-social__item,
    .single-hero-btn,
    .dj-single-playlist,
    .dj-single-nav .single-nav-prev,
    .dj-single-nav .single-nav-next {
        transition: none;
    }

    .dj-single-live-badge .dot,
    .dj-single-photo__live .dot,
    .dj-avatar-card__photo .dot {
        animation: none;
    }
}
