body {
    font-family: "Winky Rough", sans-serif; /* Tüm sayfaya uygula */
    background-color: #120b1a; /* Dark background */ 
    color: #f0f0f0; /* Light default text color */
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Changed from center to flex-start to avoid cutting off top */
    min-height: 100vh; /* Ensure it takes full viewport height */
}

.container {
    background-color: #291f33; /* Dark gray container */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5); /* Darker shadow */
    text-align: center;
    max-width: 600px; /* Limit maximum width */
    width: 100%; /* Ensure it takes available width up to max-width */
}

header {
    margin-bottom: 30px;
}

.profile-pic {
    width: 145px; /* Increased size */
    height: 145px; /* Increased size */
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #444; /* Darker border */
}

h1 {
    margin: 10px 0 5px 0;
    font-size: 2.6em; /* Increased size */
    color: #e0e0e0; /* Light heading color */
    font-weight: normal; /* Fontun kendi ağırlığını kullan */
}

p {
    margin: 0 0 20px 0;
    color: #bdbdbd; /* Lighter paragraph color */
    font-size: 1.3em; /* Increased size */
}

.social-links {
    margin-bottom: 30px;
}

.social-links a {
    color: #f0f0f0; /* Light icon color */
    font-size: 2.2em; /* Increased size */
    margin: 0 12px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #64b5f6; /* Lighter blue on hover */
}

.custom-links a.link-button {
    display: flex; /* Flexbox kullan */
    align-items: center; /* Dikeyde ortala */
    justify-content: center; /* Yatayda ortala */
    background-color: #291f33; /* Medium dark gray background */
    color: #f0f0f0; /* Light text color */
    padding: 15px 20px; /* Padding'i koru, soldaki padding-left'i kaldıracağız */
    margin: 10px 0;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2em; /* Increased size */
    font-weight: bold;
    transition: background-color 0.3s ease;
    /* position: relative; Artık gerekli değil */
    /* text-align: left; Artık gerekli değil */
    /* padding-left: 50px;  Kaldırıldı */
}

.custom-links a.link-button:hover {
    background-color: #555555; /* Slightly lighter gray on hover */
}

.custom-links .icon-left {
    /* position: absolute; Kaldırıldı */
    /* left: 15px; Kaldırıldı */
    /* top: 50%; Kaldırıldı */
    /* transform: translateY(-50%); Kaldırıldı */
    font-size: 1.4em; /* Increased size */
    margin-right: 10px; /* İkon ve yazı arasına boşluk ekle */
    flex-shrink: 0; /* İkonun küçülmesini engelle */
}

/* Style for the embedded Bluesky SVG icon */
.bluesky-icon {
    width: 1.2em; /* Match the size of other icons */
    height: 1.2em; /* Match the size of other icons */
    fill: currentColor; /* Use the link's text color by default, SVG path has its own fill */
    vertical-align: middle; /* Flexbox bunu büyük ölçüde halleder ama kalsın */
    /* Kaldırılan absolute pozisyonlama kuralları */
    margin-right: 10px; /* İkon ve yazı arasına boşluk ekle */
    flex-shrink: 0; /* İkonun küçülmesini engelle */
}

footer {
    margin-top: 30px;
    font-size: 1.1em; /* Increased size */
    color: #757575; /* Darker footer text */
}

/* Responsive adjustments */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }
    .container {
        padding: 20px;
    }
    h1 {
        font-size: 1.8em; /* Increased size (responsive) */
    }
    p {
        font-size: 1.2em; /* Increased size (responsive) */
    }
    .social-links a {
        font-size: 1.9em; /* Increased size (responsive) */
        margin: 0 10px;
    }
    .custom-links a.link-button {
        padding: 12px 15px;
        font-size: 1.1em; /* Added specific responsive size */
        /* padding-left: 45px; Kaldırıldı */
    }
     /* .custom-links .icon-left will scale relatively */
     /* .bluesky-icon için özel mobil kuralına gerek kalmadı */
} 
