@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Ubuntu', sans-serif;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    color: #fff;
}

/* Animasyonlu arka plan */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, #1a1a1a, #0d0d0d, #1a1a1a, #0d0d0d);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    z-index: -1;
}

@keyframes gradientBG {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
}

/* Container */
.container {
    text-align: center;
    backdrop-filter: blur(15px);
    background: rgba(0, 0, 0, 0.5);
    padding: 40px 50px;
    border-radius: 25px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.6);
    width: 360px;
}

/* Contact Container biraz daha büyük */
.contact-container {
    width: 400px;
}

/* Banner Görseli */
.banner-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    margin-bottom: 20px;
}

/* Yapım aşaması metni */
p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccc;
}

/* Butonlar */
.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 0;
    border-radius: 15px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.4s ease;
    border: 2px solid #fff;
    background: transparent;
    width: 100%;
    position: relative;
}

/* Hover efekti genel */
.link-button:hover {
    border: 2px solid transparent;
    box-shadow: 0 0 15px rgba(255,255,255,0.2);
}

/* Sosyal medya buton hover renkleri */
.instagram:hover { background: linear-gradient(90deg,#f58529,#dd2a7b); }
.youtube:hover { background: linear-gradient(90deg,#FF0000,#cc0000); }
.tiktok:hover { background: linear-gradient(90deg,#69C9D0,#EE1D52); }
.x:hover { background: linear-gradient(90deg,#333,#666); } /* X butonu siyah-gri */
.contact:hover { background: linear-gradient(90deg,#333,#666); } /* Contact Me siyah-gri */

/* Roblox buton stili */
.roblox {
    border: 2px solid #ccc;
}

.roblox:hover {
    background-color: #0000cc; /* hover koyu mavi */
    border: 2px solid #0000cc;
}

/* Roblox ikon stili */
.roblox-icon {
    width: 20px;
    height: 20px;
}

/* Sosyal medya ikonları */
.link-button i {
    font-size: 1.2rem;
}

/* Contact info düzeni */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    text-align: left;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #ccc;
}

/* Mobil uyumluluk ve container dikey ortalama */
@media (max-width: 450px) {
    body {
        display: block; /* flexi iptal et */
    }
    .container, .contact-container {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        padding: 30px 20px;
    }
    p { font-size: 1rem; }
    .link-button { font-size: 0.9rem; padding: 10px 0; }
    .contact-item { font-size: 0.9rem; }
}
