/* ==================================== */
/* GENEL SİTE STİLLERİ                  */
/* ==================================== */


body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #fff;
    background-color: #000;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
    z-index: 1;
}

    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        background: radial-gradient(2px 2px at 10px 20px, #eee, rgba(0,0,0,0)), radial-gradient(2px 2px at 30px 50px, #eee, rgba(0,0,0,0)), radial-gradient(1px 1px at 60px 80px, #eee, rgba(0,0,0,0)), radial-gradient(2px 2px at 100px 150px, #eee, rgba(0,0,0,0)), radial-gradient(1px 1px at 150px 200px, #eee, rgba(0,0,0,0)), radial-gradient(2px 2px at 200px 250px, #eee, rgba(0,0,0,0));
        background-size: 550px 550px;
        animation: stars-move 120s linear infinite;
        opacity: 0.6;
    }

@keyframes stars-move {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 550px 550px;
    }
}




/* ==================================== */
/* PROFİL KARTI STİLLERİ                */
/* ==================================== */

.profile-card {
    max-width: 760px;
    width: 100%;
    margin: 0 auto 3rem;
    border-radius: 1.25rem;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    position: relative;
}

.profile-cover {
    height: 220px;
    position: relative;
    background-size: cover;
    background-position: center;
}

    .profile-cover::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
    }

.avatar-wrap {
    position: absolute;
    left: 50%;
    bottom: -64px;
    transform: translateX(-50%);
    z-index: 10; /* üstte olsun */
    display: block;
    width: 128px; /* avatar boyutu ile eşleşmeli */
    height: 128px; /* avatar boyutu ile eşleşmeli */
}

.avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 0 20px rgba(255,255,255,0.5);
    background: #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.avatar-wrap:hover .avatar {
    transform: scale(1.2); /* büyüme */
    box-shadow: 0 0 40px rgba(255,255,255,0.9); /* parlak gölge */
}



.card-body {
    padding: 3rem 1.5rem 1.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

    .card-body h2 {
        color: #ffffff;
        text-shadow: 1px 1px 6px rgba(0,0,0,0.8);
        margin-bottom: 0.5rem;
    }

    .card-body p {
        color: #f0f0f0;
        text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
    }

/* ==================================== */
/* LİNK KARTLARI                         */
/* ==================================== */

.link-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    background-color: rgba(255,255,255,0.05);
    box-shadow: 0 4px 12px -2px rgba(0,0,0,.4);
    /* border-left: 5px solid transparent;  <- kaldırıldı */
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 1rem;
}

    .link-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.7);
    }

.link-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #f1f1f1;
}

/* ==================================== */
/* DİĞER BİLEŞENLER                     */
/* ==================================== */

.list-group-flush {
    border-radius: 1.25rem;
    overflow: hidden;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 1.25rem;
    box-shadow: 0 10px 25px rgba(0,0,0,.5);
    margin: 1.5rem 0;
}

    .video-container iframe,
    .video-container object,
    .video-container embed {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

/* ==================================== */
/* FOOTER                                */
/* ==================================== */

footer {
    text-align: center;
    padding: 1rem 0;
    color: #f1f1f1; /* açık renk */
    font-size: 0.85rem;
}

/* ==================================== */
/* RESPONSIVE AYARLAR                     */
/* ==================================== */

@media (max-width: 576px) {
    .avatar {
        width: 96px;
        height: 96px;
        border-width: 3px;
    }

    .link-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .video-container {
        padding-bottom: 75%;
    }
}
