/* Reset ve genel stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f6f8;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 25px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 32px;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.container {
    width: 100%;
    margin: 0;
    padding: 0;
    flex: 1;
}

.section-title {
    text-align: center;
    color: #2c3e50;
    font-size: 28px;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #3498db, #2c3e50);
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 0;
    width: 100%;
}

.profile-link {
    text-decoration: none;
    color: white;
    display: block;
}

.profile-card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    aspect-ratio: 3/4;
    background: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #ddd;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.profile-card:hover .profile-image {
    transform: scale(1.05);
}

.profile-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 12px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    background: linear-gradient(180deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
    letter-spacing: 0.5px;
}

.profile-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    text-align: center;
    font-size: 14px;
    color: #E0E5FF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
    letter-spacing: 0.5px;
}

.vip-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer {
    margin-top: 50px;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
}

/* Mobil responsive - sadece küçük ekranlar için */
@media (max-width: 480px) {
    .profile-grid {
        gap: 0;
    }
    
    .profile-header {
        padding: 6px;
        font-size: 12px;
    }
    
    .profile-footer {
        padding: 6px;
        font-size: 11px;
    }
    
    .vip-badge {
        padding: 2px 5px;
        font-size: 9px;
    }
    
    .section-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    header {
        padding: 15px;
    }
}