/* Sayfa Genel Ayarları */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: renkgecisi 15s ease infinite;
    color: white;
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

@keyframes renkgecisi {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    width: 100%;
    max-width: 400px;
    padding: 40px 20px;
    text-align: center;
}

/* transparan LOGO ÇERÇEVESİ */
.resim {
    width: 200px; /* Genişliği biraz daraltarak daha zarif yaptık */
    height: autopx;
    background-color: #transparent; /* Logonun arkasını şeffaf yapar */
    padding: 0px; /* İçeriden boşluk vererek logo ve kenar arasında mesafe bırakır */
    border-radius: 50px; /* Köşeleri yuvarlatır */
    box-shadow: 0 10px 20px rgba(0,0,0,0.25); /* Gölge ile havada durma efekti verir */
    margin-bottom: 10px;
    border: 10px; /* Varsa eski ince çizgileri kaldırır */
}

.profil p {
    font-size: 17px;
    margin-bottom: 30px;
    line-height: 1.4;
}

.buton {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    color: #FFFFFF;
    text-decoration: none;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    transition: all 0.3s ease;
}

.buton:hover {
    background-color: #ffffff;
    color: #e73c7e;
    transform: translateY(-3px);
}

.footer {
    margin-top: 40px;
    font-size: 16px;
    opacity: 0.7;
}