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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
}

.profile {
    text-align: center;
    margin-bottom: 40px;
}

.profile-picture {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.profile h1 {
    color: #333;
    margin-bottom: 10px;
    font-size: 28px;
}

.bio {
    color: #666;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.social-link i {
    font-size: 24px;
    margin-right: 15px;
    width: 30px;
}

.social-link span {
    font-size: 16px;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Sosyal medya ikonlarının renkleri */
.instagram i { color: #E4405F; }
.twitter i { color: #1DA1F2; }
.steam i { color: #171a21; }
.github i { color: #333333; }
.discord i { color: #7289DA; }

@media (max-width: 480px) {
    .container {
        padding: 20px;
    }
    
    .profile-picture {
        width: 120px;
        height: 120px;
    }
    
    .profile h1 {
        font-size: 24px;
    }
    
    .social-link {
        padding: 12px 20px;
    }
} 