* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 500px;
}

.card {
    background: #1f2937;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Profil Bölümü */
.profile-section {
    text-align: center;
    margin-bottom: 30px;
}

.profile-image {
    margin-bottom: 20px;
}

.profile-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 5px solid #667eea;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.name {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 5px;
    font-weight: 700;
}

.bio {
    font-size: 16px;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 10px;
}

.description {
    font-size: 14px;
    color: #d1d5db;
    line-height: 1.6;
}

/* Sosyal Medya Butonları */
.social-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 35px 0;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    color: white;
}

.social-btn i {
    font-size: 18px;
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Sosyal Medya Renkleri */
.instagram {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
}

.instagram:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.x {
    background: #000000;
}

.x:hover {
    background: #262626;
}

.linkedin {
    background: #0077B5;
}

.linkedin:hover {
    background: #006399;
}

.github {
    background: #333333;
}

.github:hover {
    background: #1a1a1a;
}

.youtube {
    background: #FF0000;
}

.youtube:hover {
    background: #cc0000;
}

.tiktok {
    background: #000000;
}

.tiktok:hover {
    background: #262626;
}

/* İletişim Bölümü */
.contact-section {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
}

.contact-section h2 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 15px;
    text-align: center;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: #2d3748;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #3d4859;
    transform: translateX(5px);
}

.contact-item i {
    color: #667eea;
    font-size: 16px;
    min-width: 20px;
}

.contact-item a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #667eea;
}

.contact-item span {
    color: #e5e7eb;
    font-size: 14px;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #4b5563;
    color: #9ca3af;
    font-size: 12px;
}

/* Responsive Tasarım */
@media (max-width: 380px) {
    .card {
        padding: 30px 20px;
    }

    .name {
        font-size: 24px;
    }

    .social-btn {
        padding: 10px 12px;
        font-size: 13px;
    }

    .social-btn span {
        display: none;
    }

    .social-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}
