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

body {
    display: flex;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
    background-image: url(/images/wallpaper.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.boxes {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 10px;
    margin: 15px 0;
}

.profile-container {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

.kutu {
    background-color: rgba(21, 20, 20, 0.5);
    border-radius: 15px;
    border-style: solid;
    border-color: #ad2539;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 3px 0;
    width: 100%;
    max-width: 300px;
    transition: background-color 0.3s ease;
}

.kutu:hover {
    background-color: #af273b;
    cursor: pointer;
}

.kutu a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    width: 100%;
    height: 100%;
}

.logos {
    width: 35px;
    height: 35px;
    margin-right: 10px;
    filter: brightness(0) invert(1);
}

.kutu a[href*="steamcommunity"] img {
    filter: none; /* Filtreyi kaldır, orijinal renkleri kullan */
}

a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
}

.profile-picture {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 125px;
    height: 125px;
    border-radius: 50%;
    overflow: hidden;
    border: solid black 3px;
}

.profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aciklama {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
    background-color: rgba(174, 39, 58, 0.1);
    border-radius: 15px;
    padding: 8px 15px;
    margin: 10px 0;
    color: lightgray;
    font-size: 18px;
    text-align: center;
    width: 100%;
    max-width: 300px;
}

.isim {
    background-color: rgba(174, 39, 58, 0.1);
    border-radius: 15px;
    margin: 10px 0;
    padding: 5px 15px;
    color: white;
    font-size: 24px;
    text-align: center;
    width: 100%;
    max-width: 300px;
}

.small-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.part-logos {
    width: 50px;
    height: 50px;
    border-radius: 15%;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent; /* Ensure transparent background initially */
}

.part-logos img {
    width: 90%;
    height: 90%;
    filter: brightness(0) invert(1); /* Move filter to images only */
    transition: all 0.3s ease;
}

.part-logos:hover {
    width: 45px;
}

.part-logos:hover img {
    filter: brightness(0) invert(1);
}


.contact {
    margin-top: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Responsive Medya Sorguları */
@media screen and (max-width: 768px) {
    .kutu a {
        font-size: 20px;
    }
    
    .profile-picture {
        width: 100px;
        height: 100px;
    }
    
    .isim {
        font-size: 22px;
    }
    
    .aciklama {
        font-size: 16px;
    }
    
    .part-logos {
        width: 45px;
        height: 45px;
    }
    
    .small-logos {
        gap: 10px;
    }
}

@media screen and (max-width: 480px) {
    .kutu a {
        font-size: 18px;
    }
    
    .logos {
        width: 45px;
        height: 45px;
    }
    
    .profile-picture {
        width: 90px;
        height: 90px;
    }
    
    .isim {
        font-size: 20px;
    }
    
    .aciklama {
        font-size: 14px;
    }
    
    .part-logos {
        width: 40px;
        height: 40px;
    }
    
    .small-logos {
        gap: 8px;
    }
    
    body {
        padding: 10px;
    }
}

@media screen and (max-width: 360px) {
    .kutu a {
        font-size: 16px;
    }
    
    .logos {
        width: 18px;
        height: 18px;
    }
    
    .profile-picture {
        width: 80px;
        height: 80px;
    }
    
    .part-logos {
        width: 35px;
        height: 35px;
    }
}