* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, sans-serif;
    background: #000;
    color: #fff;
    overflow: hidden;
}

/* ========================== VİDEO ========================== */

#player {
    position: fixed;
    inset: 0;
    z-index: -2;
}

#player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.overlay {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle, rgba(0,0,0,0.2), rgba(0,0,0,0.85));
    z-index: -1;
}

/* ========================= SOSYAL MEDYA ========================= */

.social-sidebar {
    position: fixed;
    top: 50%;
    left: 35px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 30;
}

.social-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s ease;
}

.social-icon i {
    font-size: 1.55rem;
    opacity: 0.85;
}

.social-icon:hover {
    transform: translateX(6px);
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.55);
    opacity: 1;
}

/* ============================ MERKEZ YAZI =========================== */

.main-content {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20;
    pointer-events: none;
}

.center-content {
    text-align: center;
    pointer-events: auto;
    max-width: 700px;
    padding: 0 40px;
}

.server-info h1 {
    font-size: 3rem;
    letter-spacing: 0.22em;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.server-info p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* ============================= STAFF ============================= */

/* =========================
   STAFF SECTION
========================= */
.staff-section {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 270px;
    padding: 20px;

    background: linear-gradient(135deg, rgba(20,20,20,0.7), rgba(40,40,40,0.4));
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.12);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    box-shadow: 
        0 10px 40px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.05);

    z-index: 40;
}


/* TITLE */
.staff-section h2 {
    text-align: center;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    margin-bottom: 16px;

    color: rgba(255,255,255,0.85);
}


/* CARD */
.staff-card {
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: 14px;

    background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.1);

    margin-bottom: 12px;

    transition: all 0.25s ease;
    cursor: pointer;
}

.staff-card:hover {
    transform: translateX(-4px) scale(1.02);

    border: 1px solid rgba(123,97,255,0.4);

    box-shadow: 
        0 6px 20px rgba(0,0,0,0.5),
        0 0 15px rgba(123,97,255,0.3);
}


/* AVATAR */
.staff-avatar-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;

    border: 2px solid rgba(255,255,255,0.15);

    box-shadow: 
        0 0 8px rgba(123,97,255,0.3);

    transition: all 0.25s ease;
}

.staff-card:hover .staff-avatar-img {
    border-color: rgba(123,97,255,0.7);
    box-shadow: 
        0 0 12px rgba(123,97,255,0.6),
        0 0 20px rgba(176,108,255,0.4);
}


/* INFO */
.staff-info {
    margin-left: 12px;
}


/* NAME */
.staff-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
}


/* ROLE */
.staff-role {
    font-size: 0.8rem;
    opacity: 0.7;
    color: rgba(200,200,255,0.85);
}

/* ========================= YÜKLEME BAR ========================= */

/* =========================
   MUSIC CONTROLS
========================= */
.music-controls {
    position: fixed;
    bottom: 28px;
    left: 40px;
    display: flex;
    align-items: center;
    padding: 12px 18px;

    background: linear-gradient(135deg, rgba(20,20,20,0.65), rgba(40,40,40,0.35));
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    box-shadow: 
        0 8px 30px rgba(0,0,0,0.45),
        inset 0 1px 0 rgba(255,255,255,0.05);

    z-index: 50;
    transition: all 0.3s ease;
}

.music-controls:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 40px rgba(0,0,0,0.6),
        inset 0 1px 0 rgba(255,255,255,0.08);
}


/* MUTE BUTTON */
#muteButton {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;

    background: radial-gradient(circle at 30% 30%, #2a2a2a, #111);
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    box-shadow: 
        0 4px 12px rgba(0,0,0,0.4),
        inset 0 1px 2px rgba(255,255,255,0.1);

    transition: all 0.25s ease;
}

#muteButton:hover {
    transform: scale(1.08);
    box-shadow: 
        0 6px 18px rgba(123,97,255,0.5),
        inset 0 1px 3px rgba(255,255,255,0.15);
}

#muteButton:active {
    transform: scale(0.95);
}


/* VOLUME */
.volume-slider-container {
    display: flex;
    align-items: center;
    margin-left: 14px;
    gap: 10px;
}

#volumeSlider {
    width: 150px;
    height: 5px;
    appearance: none;
    border-radius: 999px;
    outline: none;
    cursor: pointer;

    background: linear-gradient(90deg, #4facfe, #7b61ff);
}

#volumeSlider::-webkit-slider-thumb {
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: white;

    box-shadow: 
        0 0 10px rgba(123,97,255,0.8),
        0 0 20px rgba(176,108,255,0.5);

    cursor: pointer;
    transition: transform 0.2s ease;
}

#volumeSlider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.volume-value {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    min-width: 32px;
    text-align: right;
}


/* =========================
   LOADING CONTAINER
========================= */
.loading-container {
    position: fixed;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    padding: 12px 20px;
    border-radius: 999px;

    background: linear-gradient(135deg, rgba(20,20,20,0.65), rgba(40,40,40,0.35));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    border: 1px solid rgba(255,255,255,0.12);

    display: flex;
    gap: 16px;
    align-items: center;

    box-shadow: 
        0 8px 30px rgba(0,0,0,0.45),
        inset 0 1px 0 rgba(255,255,255,0.05);

    z-index: 50;
    transition: all 0.3s ease;
}

.loading-container:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 
        0 12px 40px rgba(0,0,0,0.6),
        inset 0 1px 0 rgba(255,255,255,0.08);
}


/* PROGRESS BAR */
.progress-bar {
    position: relative;
    width: 260px;
    height: 8px;
    background: rgba(255,255,255,0.08);
    border-radius: 999px;
    overflow: hidden;

    box-shadow: 
        inset 0 1px 3px rgba(0,0,0,0.5),
        0 0 10px rgba(123,97,255,0.15);
}


/* PROGRESS FILL */
.progress-fill {
    height: 100%;
    width: 0%;
    border-radius: 999px;

    background: linear-gradient(90deg, #4facfe, #7b61ff, #b06cff, #4facfe);
    background-size: 200% 100%;

    box-shadow: 
        0 0 10px rgba(79,172,254,0.7),
        0 0 20px rgba(123,97,255,0.6),
        0 0 30px rgba(176,108,255,0.4);

    transition: width 0.25s ease-out;
    animation: shimmer 2.5s linear infinite;
}

.progress-fill::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 20px;
    background: rgba(255,255,255,0.4);
    filter: blur(6px);
    opacity: 0.6;
}


/* COMPLETE STATE */
.progress-fill.complete {
    box-shadow: 
        0 0 15px rgba(123,97,255,0.9),
        0 0 40px rgba(176,108,255,0.7);
}


/* ANIMATION */
@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}


/* TEXT */
.progress-text {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.4px;
    min-width: 40px;
    text-align: right;
}

/* ========================== SES KONTROL ========================== */

.music-controls {
    position: fixed;
    bottom: 28px;
    left: 40px;
    display: flex;
    align-items: center;
    padding: 12px 18px;

    background: linear-gradient(135deg, rgba(20,20,20,0.65), rgba(40,40,40,0.35));
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    box-shadow: 
        0 8px 30px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.05);

    z-index: 50;
    transition: all 0.3s ease;
}

.music-controls:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 40px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.08);
}


/* MUTE BUTTON */
#muteButton {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;

    background: radial-gradient(circle at 30% 30%, #2a2a2a, #111);
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    box-shadow: 
        0 4px 12px rgba(0,0,0,0.4),
        inset 0 1px 2px rgba(255,255,255,0.1);

    transition: all 0.25s ease;
}

#muteButton:hover {
    transform: scale(1.08);
    box-shadow: 
        0 6px 18px rgba(0,0,0,0.6),
        inset 0 1px 3px rgba(255,255,255,0.15);
}

#muteButton:active {
    transform: scale(0.95);
}


/* VOLUME AREA */
.volume-slider-container {
    display: flex;
    align-items: center;
    margin-left: 14px;
    gap: 10px;
}


/* SLIDER */
#volumeSlider {
    width: 150px;
    height: 5px;
    appearance: none;
    background: linear-gradient(90deg, #4facfe, #00f2fe);
    border-radius: 999px;
    outline: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

#volumeSlider:hover {
    opacity: 0.9;
}

/* slider thumb */
#volumeSlider::-webkit-slider-thumb {
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 0 10px rgba(255,255,255,0.7);
    cursor: pointer;
    transition: transform 0.2s ease;
}

#volumeSlider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}


/* VALUE TEXT */
.volume-value {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    min-width: 32px;
    text-align: right;
    letter-spacing: 0.5px;
}

/* ========================== MUTE DURUMU ========================== */

body.muted .music-controls {
    opacity: 0.45;
}

body.muted #muteButton {
    background: rgba(255,60,60,0.85);
}

/* ========================== MOUSE FIX ========================== */

html, body, * {
    cursor: default !important;
}
