@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap'); /* Roboto fontu eklendi */

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #000; /* Siyah arka plan */
}

/* GIF Arka Planı - Tam Ekran ve Mobil Uyumluluk */
.gif-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* GIF, diğer içeriklerin altında kalacak */
    display: flex;
    justify-content: center;
    align-items: center;
}

.gif-background img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* GIF'in ekranı tamamen kaplamasını sağlar */
}

/* Logo - 3D efektsiz */
.logo {
    object-fit: contain;
    width: 42%; /* Orijinal boyutunun %40'ını küçülttüm */
    max-width: 195px; /* Maksimum boyutunu belirledim */
    height: auto;
    margin-bottom: 25px;
    display: block;
    margin-left: auto;
    margin-right: auto; /* Logoyu ortaladık */
    box-shadow: none; /* 3D efekti kaldırdık */
    filter: none; /* Işık ve kontrast filtrelerini kaldırdık */
}

/* Logo hover durumu */
.logo:hover {
    box-shadow: none; /* Hoverda 3D efekti yok */
    filter: none; /* Filtreyi kaldırdık */
}

/* Buton Grupları */
.btn-group {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    flex-direction: column;
}

/* Butonlar */
.btn {
    display: flex;
    align-items: center;
    justify-content: center; /* Yazıları tam ortaladık */
    gap: 10px; /* Logo ve yazı arasındaki boşluk */
    padding: 12px 20px;
    width: 250px;
    border: 2px solid #f1f1f1; /* Kenar çizgilerini #f1f1f1 (açık beyaz) yapıyoruz */
    border-radius: 25px; /* Daha yuvarlak köşeler */
    font-family: 'Roboto', sans-serif; /* Roboto Regular fontu kullanıldı */
    font-weight: 700; /* Yazıyı kalınlaştırdım */
    text-transform: uppercase;
    color: #000;
    background: rgba(255, 255, 255, 0.3); /* Butonların arka plan transparanlığını %30 yaptım */
    cursor: pointer;
    transition: all 0.3s;
    margin: 10px 0;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25), 0 5px 10px rgba(0, 0, 0, 0.15); /* Derinliği artırdım */
    text-decoration: none; /* Mavi alt çizgiyi kaldırdık */
}

/* Buton Yazı Altı Çizgisini Kaldırma */
.btn a, .btn {
    text-decoration: none !important; /* Alt çizgileri kesinlikle kaldırıyoruz */
}

/* Buton Logo */
.btn .button-logo {
    position: absolute;
    left: 10px; /* Logoyu butonun soluna hizaladık */
    width: 32px; /* Logo genişliği */
    height: 32px; /* Logo yüksekliği */
    object-fit: contain;
}

/* Butonlar Hover Durumu */
.btn:hover {
    transform: translateY(-10px); /* Hover durumunda butonu daha fazla yukarı kaydırıyoruz */
    color: #FFF;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3), 0 10px 15px rgba(0, 0, 0, 0.2); /* Hoverda gölgeyi daha belirgin yapıyoruz */
}

/* Diğer butonların hover renk geçişleri korunmuştur */
.btn1:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.btn2:hover {
    background: linear-gradient(150deg, #FFF, #0088cc);
}

.btn3:hover {
    background: linear-gradient(135deg, #a0c4ff, #e3d9ff);
}

.btn4:hover {
    background: linear-gradient(150deg, #E5FFCC, #1EBEA5);
}

.btn5:hover {
    background: linear-gradient(135deg, #f5e4c7, #d2ebd7);
}

.btn6:hover {
    background: linear-gradient(150deg, #66b3ff, #80ccff);
}

.btn7:hover {
    background: linear-gradient(45deg, #6ab04c, #badc58);
}

.btn8:hover {
    background: linear-gradient(45deg, #f94d6b, #f29c94);
}

/* Copyright */
.cr {
    font-family: 'Roboto', sans-serif;
    color: #FFF; /* Beyaz yapıldı */
    font-weight: 300; /* Roboto Thin kullanıldı */
    font-size: 14px;
    text-align: center;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Copyright alt çizgi kaldırıldı */
.cr::after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background-color: transparent;
    margin: 10px auto 0;
}
