/* Genel Ayarlar ve Fontlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Renkler sadeleştirildi */
    --main-color: #ffffff;
    --accent-color: #ff0000; /* Discord butonu için kırmızı */
    
    /* Fontlar */
    --font-body: 'Montserrat', sans-serif;
    --font-click: 'Montserrat', sans-serif;
}

body {
    background-color: #000;
    color: var(--main-color);
    overflow: hidden; 
    font-family: var(--font-body);
}

/* --- Video Arka Planı --- */
#video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2; 
    overflow: hidden;
}

#background-video {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

/* --- Giriş Ekranı (Blur'lu Başlangıç) --- */
#initial-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); 
    z-index: 100; 
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    backdrop-filter: blur(15px); 
    transition: opacity 1s ease-in-out; 
}

#click-text {
    font-family: var(--font-click);
    font-weight: 800;
    font-size: 3rem;
    color: var(--main-color);
    /* Sade parlaklık */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); 
    animation: pulse 1.5s infinite alternate; 
}

@keyframes pulse {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}

/* --- Ana İçerik ve Profiller --- */
#main-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    width: 100%;
    padding-top: 50px; 
    position: relative;
    z-index: 10;
}

.profile-container {
    display: flex;
    gap: 40px; 
    flex-wrap: wrap;
    justify-content: center;
}

.profile-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Tüm profil resimleri (küçük ve eşit boyut) */
.profile-pic {
    width: 80px; 
    height: 80px;
    border-radius: 50%; 
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.5); 
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Yumuşak geçiş */
}

/* Tüm profillerin üzerine gelindiğinde büyüme efekti */
.profile-item:hover .profile-pic {
    transform: scale(1.1); /* Üzerine gelindiğinde %10 büyür */
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.7); /* Parlaklık efekti */
}

/* --- İsim Yazıları (Normal, Küçük Font) --- */
.neon-text {
    font-family: var(--font-body); 
    font-weight: 700;
    font-size: 1.1rem; /* Küçük font */
    margin-top: 8px;
    text-transform: uppercase;
    color: var(--main-color);
    text-shadow: none; 
    animation: none; 
}

/* --- Alt Bilgi (Footer: Saat ve Discord) --- */
.footer {
    position: fixed;
    bottom: 15px; 
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    z-index: 50;
    font-family: var(--font-body);
}

#datetime {
    font-size: 0.8rem; /* Saat/Tarih küçültüldü */
    color: var(--main-color);
    text-shadow: none; 
    opacity: 0.7; 
}

.discord-button {
    text-decoration: none;
    padding: 8px 15px; 
    border: none; 
    color: #fff;
    background-color: var(--accent-color); 
    border-radius: 3px;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 0.9rem; 
    box-shadow: 0 0 5px var(--accent-color); 
}

.discord-button:hover {
    background-color: #a00; 
    box-shadow: 0 0 10px var(--accent-color);
}