/* Genel Sıfırlama */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #000;
    color: #fff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* HEADER - Butonun Konumlandırılması */
.header {
    position: fixed;
    top: 0;
    right: 0;
    padding: 20px;
    z-index: 10;
}

/* Kapsayıcı Stil */
.container {
    max-width: 90%;
    width: 100%;
}

/* SVG Logo Stili */
.logo-svg {
    width: 100%;
    max-width: 800px; 
    height: auto;
    display: block;
    margin: 0 auto;
}

/* MASKE ANIMASYONU */
/* Maskenin içindeki dikdörtgeni soldan sağa doğru genişletiyoruz */
/* Başlangıçta genişlik 0 (görünmez) */
.mask-rect {
    width: 0; 
    /* 4 saniyede, yumuşak bir hızla açılacak */
    animation: revealLogo 4s ease-out forwards;
    animation-delay: 0.5s;
}

/* Maske Animasyonu Keyframes */
@keyframes revealLogo {
    to {
        /* Logonun genişliği 205 civarıydı, garanti olsun diye 300 yapıyoruz */
        width: 300px; 
    }
}

/* E-posta Butonu Stili */
.email-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    border-radius: 50%;
    font-size: 1.3rem;
    transition: background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.email-button:hover {
    background-color: #fff;
    color: #000;
    transform: scale(1.1);
    border-color: #fff;
}

/* Mobil Uyumlu Ayarlar */
@media (max-width: 480px) {
    .logo-svg {
        max-width: 100%; /* Mobilde tam genişlik */
    }
    .header {
        padding: 15px;
    }
    .email-button {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}