﻿/* ============================================
   DJ WEBSITE - ANA STİL DOSYASI
   ============================================ */

/* --- TEMEL AYARLAR --- */
main {
    display: block;
    min-height: 70vh;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff3366;
    --secondary-color: #00d4ff;
    --bg-dark: #0a0a0a;
    --bg-card: #111;
    --bg-card-hover: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --border-color: #222;
    --font-heading: 'Orbitron', monospace;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

::selection {
    background: var(--primary-color);
    color: #000;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* --- LOADING ANİMASYONU --- */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader-wrapper.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid transparent;
    border-top-color: var(--primary-color);
    border-bottom-color: var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 18px;
    letter-spacing: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* --- NAVBAR --- */
.navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
    transition: var(--transition);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 24px;
    letter-spacing: 2px;
    color: #fff !important;
    display: flex;
    align-items: center;
}

.navbar-logo {
    max-height: 44px;
    max-width: 180px;
    width: auto;
    height: auto;
    border-radius: 6px;
    object-fit: contain;
    display: block;
}

.navbar-brand:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #aaa !important;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #fff !important;
    background: rgba(255, 51, 102, 0.1);
}

.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

/* --- GLITCH EFFECT --- */
.glitch-text {
    position: relative;
    color: #fff;
    text-shadow: 0.05em 0 0 rgba(255, 51, 102, 0.75),
                -0.05em -0.025em 0 rgba(0, 212, 255, 0.75);
    animation: glitch-skew 1s infinite linear alternate-reverse;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.glitch-text::before {
    color: var(--primary-color);
    z-index: -1;
    animation: glitch-effect 3s infinite;
}

.glitch-text::after {
    color: var(--secondary-color);
    z-index: -1;
    animation: glitch-effect 2s infinite reverse;
}

@keyframes glitch-effect {
    0%, 80%, 100% { transform: translate(0); opacity: 0; }
    81% { transform: translate(3px, -2px); opacity: 1; }
    83% { transform: translate(-3px, 2px); opacity: 1; }
    85% { transform: translate(0); opacity: 0; }
}

@keyframes glitch-skew {
    0% { transform: skew(0deg); }
    20% { transform: skew(0.5deg); }
    40% { transform: skew(-0.5deg); }
    60% { transform: skew(0.5deg); }
    80% { transform: skew(-0.5deg); }
    100% { transform: skew(0deg); }
}

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.6) 50%, rgba(10, 10, 10, 0.95) 100%);
    z-index: 1;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 20px;
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 30px;
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    letter-spacing: 8px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-tagline {
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: var(--text-secondary);
    letter-spacing: 3px;
    font-weight: 300;
}

.hero-actions {
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-scroll-indicator {
    color: var(--text-secondary);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator i {
    display: block;
    margin-top: 10px;
    font-size: 16px;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* --- BUTONLAR --- */
.btn-dj-primary {
    background: var(--primary-color);
    color: #fff;
    border: 2px solid var(--primary-color);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-dj-primary:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 51, 102, 0.3);
}

.btn-dj-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-dj-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(255, 51, 102, 0.1);
    transform: translateY(-2px);
}

.btn-dj-primary.btn-sm,
.btn-dj-outline.btn-sm {
    padding: 8px 20px;
    font-size: 12px;
}

/* --- SECTION --- */
.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background: var(--bg-dark);
}

.section-gradient {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0d0d0d 50%, var(--bg-dark) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 5px 16px;
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: 3px;
    text-align: center;
}

/* --- NEXT EVENT CARD (ANA SAYFA) --- */
.next-event-card {
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.1), rgba(0, 212, 255, 0.05));
    border: 1px solid rgba(255, 51, 102, 0.2);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.next-event-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 51, 102, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.countdown-box {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}

.countdown-value {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.countdown-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-top: 5px;
}

.next-event-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.next-event-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--text-secondary);
    font-size: 14px;
}

.next-event-details i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* --- TOUR CARDS (ETKINLIKLER SAYFASI) --- */
.tour-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    gap: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.tour-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: var(--transition);
}

.tour-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.tour-card:hover::after {
    transform: scaleY(1);
}

.tour-card.past {
    opacity: 0.6;
}

.tour-card.past:hover {
    opacity: 1;
}

.tour-card-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    padding: 10px;
    background: rgba(255, 51, 102, 0.1);
    border-radius: 12px;
}

.tour-day {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

.tour-month {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    margin-top: 5px;
}

.tour-year {
    font-size: 11px;
    color: var(--text-secondary);
}

.tour-card-body {
    flex: 1;
}

.tour-venue {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.tour-info {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: var(--text-secondary);
}

.tour-info i {
    color: var(--secondary-color);
    margin-right: 6px;
}

.past-badge {
    display: inline-block;
    padding: 3px 10px;
    background: #333;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

/* --- STAT CARDS (BIOGRAFI) --- */
.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 20px;
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 51, 102, 0.1);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
}

.stat-label {
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    margin-top: 5px;
}

/* --- BIOGRAPHY --- */
.bio-image-wrapper {
    position: relative;
    display: inline-block;
}

.bio-image {
    max-width: 100%;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.bio-image-border {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 24px;
    z-index: 0;
    opacity: 0.3;
}

.bio-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #ccc;
}

.bio-content p {
    margin-bottom: 20px;
}

.bio-image-placeholder {
    text-align: center;
    padding: 60px;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

/* --- MEDIA GRID --- */
.media-grid-item {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.media-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.media-grid-item:hover img {
    transform: scale(1.1);
}

.media-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    gap: 8px;
}

.media-grid-item:hover .media-overlay {
    opacity: 1;
}

.media-overlay i {
    font-size: 24px;
    color: #fff;
}

.media-title {
    font-size: 12px;
    color: #fff;
    text-align: center;
    padding: 0 10px;
}

/* --- VIDEO EMBED --- */
.video-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-title {
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #ccc;
    margin: 0;
}

/* --- PAGE HERO --- */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #0a0a1a 100%);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 51, 102, 0.15) 0%, transparent 70%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 80px;
}

.page-hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: 5px;
    text-transform: uppercase;
}

/* --- SOSYAL MEDYA --- */
.social-big-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-big-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
    font-weight: 600;
}

.social-big-link:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 51, 102, 0.15);
}

.social-big-link i {
    font-size: 20px;
    color: var(--primary-color);
}

/* --- CONTACT FORM --- */
.contact-form .form-control {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: #fff;
    border-radius: 12px;
    padding: 14px 18px;
    transition: var(--transition);
}

.contact-form .form-control:focus {
    background: #1a1a1a;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 51, 102, 0.15);
    color: #fff;
}

.contact-form .form-label {
    color: #aaa;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

/* --- VISUAL EQUALIZER --- */
.visual-equalizer {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 60px;
    margin-top: 20px;
    justify-content: center;
}

.visual-equalizer span {
    width: 6px;
    background: linear-gradient(to top, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    animation: equalizer 1.2s ease-in-out infinite;
}

.visual-equalizer span:nth-child(1) { height: 20px; animation-delay: 0s; }
.visual-equalizer span:nth-child(2) { height: 40px; animation-delay: 0.2s; }
.visual-equalizer span:nth-child(3) { height: 55px; animation-delay: 0.4s; }
.visual-equalizer span:nth-child(4) { height: 30px; animation-delay: 0.6s; }
.visual-equalizer span:nth-child(5) { height: 45px; animation-delay: 0.8s; }

@keyframes equalizer {
    0%, 100% { transform: scaleY(0.5); }
    50% { transform: scaleY(1); }
}

/* --- DJ LIGHTBOX (YENI) --- */
.dj-lightbox {
    display: none;
    position: fixed;
    z-index: 99999;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.dj-lightbox.show { display: block; }

.dj-lightbox-bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.dj-lightbox-close {
    position: absolute;
    top: 20px; right: 20px;
    z-index: 10;
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.dj-lightbox-close:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: rotate(90deg);
}

.dj-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 52px; height: 52px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.dj-lightbox-nav:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.dj-lightbox-prev { left: 20px; }
.dj-lightbox-next { right: 20px; }

.dj-lightbox-counter {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    background: rgba(0,0,0,0.5);
    padding: 6px 16px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.dj-lightbox-content {
    position: absolute;
    inset: 80px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dj-lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dj-lightbox-content img.loaded {
    opacity: 1;
    transform: scale(1);
}

.dj-lightbox-title {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 15px;
    text-align: center;
    white-space: nowrap;
    max-width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* --- VIDEO MODAL --- */
.dj-video-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.dj-video-modal.show { display: block; }

.dj-video-bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
}

.dj-video-container {
    position: absolute;
    inset: 100px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dj-video-container iframe {
    width: 100%;
    height: 100%;
    max-width: 1000px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* --- VIDEO CARDS --- */
.video-card {
    cursor: pointer;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.video-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,51,102,0.15);
}

.video-thumb {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #111;
    overflow: hidden;
}

.video-thumb-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.video-card:hover .video-thumb-img {
    transform: scale(1.05);
}

.video-play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 70px; height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    transition: var(--transition);
    box-shadow: 0 0 30px rgba(255,51,102,0.4);
}

.video-card:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 50px rgba(255,51,102,0.6);
}

.video-card-title {
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #ccc;
}

@media (max-width: 767px) {
    .dj-lightbox-content { inset: 60px 10px; }
    .dj-lightbox-nav { width: 40px; height: 40px; font-size: 16px; }
    .dj-lightbox-prev { left: 8px; }
    .dj-lightbox-next { right: 8px; }
    .dj-lightbox-close { top: 12px; right: 12px; width: 40px; height: 40px; font-size: 16px; }
    .dj-lightbox-counter { top: 16px; font-size: 11px; padding: 4px 12px; }
    .dj-video-container { inset: 80px 10px; }
    .video-play-btn { width: 55px; height: 55px; font-size: 22px; }
    .dj-lightbox-title { font-size: 13px; bottom: -30px; }
}

@media (max-width: 480px) {
    .dj-lightbox-content { inset: 70px 0; }
    .dj-lightbox-nav { width: 34px; height: 34px; font-size: 14px; }
    .video-play-btn { width: 48px; height: 48px; font-size: 18px; }
    .video-card-title { padding: 10px 14px; font-size: 13px; }
}

/* --- FOOTER --- */
.site-footer {
    background: #050505;
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 18px;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(255, 51, 102, 0.1);
    transform: translateY(-3px);
}

.footer-divider {
    border-color: var(--border-color);
    margin: 30px 0;
}

.footer-text {
    color: var(--text-secondary);
    font-size: 13px;
    letter-spacing: 1px;
}

/* --- SCROLL TOP BUTON --- */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 5px 20px rgba(255, 51, 102, 0.3);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 51, 102, 0.5);
}

/* --- ADMIN LOGIN --- */
.admin-login-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #0a0a1a 100%);
    padding: 20px;
}

.admin-login-container {
    width: 100%;
    max-width: 420px;
}

.admin-login-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
}

.admin-login-box .form-control {
    background: #1a1a1a;
    border: 1px solid var(--border-color);
    color: #fff;
    border-radius: 10px;
    padding: 12px 16px;
}

.admin-login-box .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 51, 102, 0.15);
}

.admin-login-box .form-label {
    color: #aaa;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- ADMIN SIDEBAR --- */
/* --- ADMIN CONTENT --- */
.admin-content {
    min-height: 100vh;
}

.admin-page-title {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 700;
    letter-spacing: 2px;
}

/* --- ADMIN CARDS --- */
.admin-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
}

.admin-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
    flex-wrap: wrap;
    gap: 10px;
}

.admin-card-header h5 {
    font-weight: 700;
    font-size: 16px;
    margin: 0;
}

.admin-card-body {
    padding: 28px;
}

/* --- ADMIN STAT CARDS --- */
.admin-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 26px;
    display: flex;
    align-items: center;
    gap: 22px;
    transition: var(--transition);
}

.admin-stat-card:hover {
    border-color: rgba(255, 51, 102, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.stat-detail h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    margin: 0;
    line-height: 1.2;
}

.stat-detail span {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* --- ADMIN TABLE --- */
.admin-table {
    margin: 0;
    color: #ccc;
    width: 100%;
}

.admin-table thead th {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 16px;
    white-space: nowrap;
}

.admin-table tbody td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: 14px 16px;
    vertical-align: middle;
}

.admin-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* --- ADMIN RESPONSIVE --- */
@media (max-width: 991px) {
    .admin-card-header { padding: 14px 18px; }
    .admin-card-header h5 { font-size: 14px; }
    .admin-card-body { padding: 20px; }
    .admin-stat-card { padding: 20px; gap: 16px; }
    .stat-icon { width: 50px; height: 50px; font-size: 20px; }
    .stat-detail h3 { font-size: 1.4rem; }
    .admin-media-item img, .admin-video-thumb { height: 140px; }
}

@media (max-width: 576px) {
    .admin-card-header { padding: 12px 14px; flex-direction: column; align-items: flex-start; }
    .admin-card-header h5 { font-size: 13px; width: 100%; }
    .admin-card-body { padding: 14px; }
    .admin-stat-card { padding: 16px; gap: 14px; }
    .stat-icon { width: 44px; height: 44px; font-size: 18px; border-radius: 10px; }
    .stat-detail h3 { font-size: 1.2rem; }
    .stat-detail span { font-size: 11px; }
    .admin-page-title { font-size: 1.1rem; }
    .admin-media-item img, .admin-video-thumb { height: 120px; }
}

/* --- ADMIN MEDIA ITEM --- */
.admin-media-item {
    position: relative;
    background: #1a1a1a;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.admin-media-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.admin-video-thumb {
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #111;
    color: var(--secondary-color);
    gap: 10px;
}

.admin-video-thumb span {
    font-family: var(--font-heading);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
}

.admin-media-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: #0a0a0a;
}

.admin-media-title {
    font-size: 12px;
    color: #aaa;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
}

/* --- LIST GROUP (ADMIN) --- */
.list-group-item {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: #ccc;
    padding: 14px 20px;
    transition: var(--transition);
}

.list-group-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.list-group-item.unread {
    background: rgba(255, 51, 102, 0.05);
    border-left: 3px solid var(--primary-color);
}

/* --- ADMIN FORM --- */
.admin-card .form-label {
    color: #aaa;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.admin-card .form-control {
    background: #1a1a1a;
    border: 1px solid var(--border-color);
    color: #fff;
    border-radius: 10px;
    padding: 10px 14px;
}

.admin-card .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 51, 102, 0.1);
}

.admin-card .form-text {
    color: #555;
    font-size: 12px;
}

/* --- TOUR FILTERS --- */
.tour-filters .form-select {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: #fff;
    border-radius: 10px;
    padding: 8px 14px;
}

.tour-filters .form-select:focus {
    border-color: var(--primary-color);
}

/* --- MEDIA FILTERS --- */
.media-filters .btn-dj-primary,
.media-filters .btn-dj-outline {
    padding: 8px 20px;
    font-size: 12px;
}

/* --- BIO PREVIEW (ANA SAYFA) --- */
.bio-preview {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.8;
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    .sidebar {
        width: 60px;
    }
    .sidebar .nav-text,
    .sidebar-logo span {
        display: none;
    }
    .sidebar .nav-link {
        justify-content: center;
        padding: 12px;
    }
    .sidebar .nav-link i {
        margin: 0;
        font-size: 18px;
    }
    .sidebar-logo {
        padding: 15px;
    }
    .sidebar-logo i {
        font-size: 22px;
    }
    .admin-content {
        margin-left: 60px;
        padding: 20px;
    }
    .next-event-card {
        padding: 25px;
    }
    .countdown-box {
        gap: 12px;
    }
    .countdown-value {
        font-size: 2rem;
    }
    .countdown-item {
        min-width: 50px;
    }
}

/* --- VENUE CARDS (Çıktığımız Yerler) --- */
.venue-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.venue-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 51, 102, 0.15);
}

.venue-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.venue-card-placeholder {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a0a0a, #0a0a1a);
    font-size: 48px;
    color: var(--primary-color);
    opacity: 0.4;
}

.venue-card-body {
    padding: 18px;
}

.venue-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 6px;
    color: #fff;
}

.venue-city {
    font-size: 13px;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.venue-city i {
    margin-right: 5px;
}

.venue-desc {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 767px) {
    .section { padding: 50px 0; }
    .section-header { margin-bottom: 35px; }
    .section-title { font-size: 1.5rem; letter-spacing: 1px; }
    .section-badge { font-size: 9px; padding: 4px 12px; }

    .hero-section { min-height: 85vh; }
    .hero-title { letter-spacing: 3px; font-size: clamp(2.2rem, 12vw, 4rem); }
    .hero-tagline { font-size: 0.9rem; letter-spacing: 1px; }
    .hero-badge { font-size: 9px; padding: 4px 14px; margin-bottom: 20px; }
    .hero-actions .btn-dj-primary,
    .hero-actions .btn-dj-outline { padding: 10px 22px; font-size: 12px; }
    .hero-scroll-indicator { display: none; }

    .page-hero { min-height: 30vh; }
    .page-hero-content { padding-top: 70px; }
    .page-hero-content h1 { font-size: 1.6rem; letter-spacing: 2px; }

    .tour-card {
        flex-direction: column;
        text-align: center;
        padding: 18px;
    }
    .tour-card::after { display: none; }
    .tour-card:hover { transform: none; }
    .tour-card-date {
        flex-direction: row;
        gap: 10px;
        min-width: auto;
        padding: 8px 16px;
        width: 100%;
    }
    .tour-day { font-size: 1.5rem; }
    .tour-venue { font-size: 1rem; }
    .tour-info { justify-content: center; font-size: 12px; }

    .next-event-card { padding: 25px 18px; }
    .countdown-box { gap: 10px; flex-wrap: wrap; }
    .countdown-item { min-width: 55px; }
    .countdown-value { font-size: 2rem; }
    .countdown-label { font-size: 9px; }
    .next-event-info h3 { font-size: 1.1rem; }
    .next-event-details { flex-direction: column; gap: 8px; align-items: center; font-size: 13px; }

    .bio-content { font-size: 0.95rem; }
    .stat-card { padding: 25px 15px; }
    .stat-number { font-size: 1.8rem; }

    .social-links { justify-content: center; margin-top: 15px; }
    .social-link { width: 38px; height: 38px; font-size: 15px; }
    .social-big-links { gap: 8px; }
    .social-big-link { padding: 8px 14px; font-size: 11px; }
    .social-big-link i { font-size: 16px; }

    .venue-card img,
    .venue-card-placeholder { height: 120px; }
    .venue-card-body { padding: 12px; }
    .venue-name { font-size: 0.8rem; }
    .venue-city { font-size: 11px; }

    .media-grid-item { aspect-ratio: auto; height: 160px; }

    .contact-form .form-control { padding: 12px 14px; font-size: 14px; }
    .contact-form .form-label { font-size: 11px; }

    .site-footer { padding: 40px 0 20px; }
    .footer-brand { font-size: 1.2rem; text-align: center; }
    .footer-tagline { text-align: center; font-size: 12px; }

    .table-responsive {
        font-size: 12px;
        -webkit-overflow-scrolling: touch;
        overflow-x: auto;
    }
}

@media (max-width: 480px) {
    .section { padding: 35px 0; }
    .section-title { font-size: 1.2rem; }

    .hero-section { min-height: 80vh; }
    .hero-title { font-size: clamp(1.8rem, 10vw, 2.8rem); letter-spacing: 2px; }
    .hero-actions { display: flex; flex-direction: column; gap: 10px; align-items: center; }
    .hero-actions .btn-dj-primary,
    .hero-actions .btn-dj-outline { width: 100%; max-width: 220px; justify-content: center; }
    .hero-badge { font-size: 8px; }

    .page-hero { min-height: 25vh; }
    .page-hero-content h1 { font-size: 1.3rem; }

    .tour-card { padding: 14px; }
    .tour-card-date { padding: 6px 12px; gap: 6px; }
    .tour-day { font-size: 1.2rem; }
    .tour-month { font-size: 10px; }
    .tour-info { flex-direction: column; gap: 5px; }

    .next-event-card { padding: 18px 12px; }
    .countdown-item { min-width: 45px; }
    .countdown-value { font-size: 1.5rem; }
    .countdown-label { font-size: 8px; }

    .admin-login-box { padding: 20px; }
    .admin-login-box h2 { font-size: 16px; }

    .venue-card img,
    .venue-card-placeholder { height: 100px; }

    .media-grid-item { height: 130px; }

    .social-big-link { padding: 6px 12px; font-size: 10px; }
    .social-big-link i { font-size: 14px; }

    .table-responsive { font-size: 11px; }

    .countdown-value { font-size: 1.3rem; }
    .countdown-item { min-width: 35px; }

    .admin-page-title { font-size: 1rem; }
    .admin-card-header { padding: 10px 12px; }
    .admin-card-header h5 { font-size: 12px; }
    .admin-card-body { padding: 12px; }
    .admin-stat-card { padding: 12px; gap: 10px; }
    .stat-icon { width: 38px; height: 38px; font-size: 15px; border-radius: 8px; }
    .stat-detail h3 { font-size: 1rem; }
    .stat-detail span { font-size: 10px; }
    .admin-table thead th { font-size: 10px; padding: 8px 10px; }
    .admin-table tbody td { padding: 8px 10px; font-size: 12px; }
    .admin-media-item img,
    .admin-video-thumb { height: 100px; }
    .admin-card .form-control { padding: 8px 10px; font-size: 13px; }
    .admin-card .form-label { font-size: 10px; }
    .btn-dj-primary, .btn-dj-outline { padding: 8px 16px; font-size: 11px; }
    .list-group-item { padding: 10px 14px; font-size: 13px; }
    .sidebar-logo { padding: 12px 8px; }
    .sidebar-logo i { font-size: 20px; }
    .sidebar-nav .nav-link { padding: 10px 12px; font-size: 13px; }
}
