/* Genel Stil ve Resetler */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 500px;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background-color: #000;
}

/* Başlık Görseli Stili */
.main-title-img-container {
    margin-bottom: 40px; /* Başlık ile ilk kutu arasındaki boşluk */
}

.main-title-img-container img {
    max-width: 100%; /* Görselin kapsayıcısına sığmasını sağlar */
    height: auto;
    /* Eğer başlık görseline de parlama efekti isterseniz */
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.7)); /* Altın sarısı parlama efekti */
}

/* Sosyal Medya Kutuları (Öncekiyle aynı, değişiklik yok) */
.social-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1a1a1a;
    border: 2px solid #ffd700;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.social-box .label {
    font-size: 1.1em;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
}

.social-box .value {
    font-size: 1.1em;
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-box .value:hover {
    color: #fff;
}

/* Alt Logo Stili */
.logo-footer {
    margin-top: 50px;
}

.logo-footer img {
    max-width: 150px; /* Logo boyutunu ayarla */
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5)); /* Logoya hafif parlama efekti */
}

/* Duyarlılık (Responsive) */
@media (max-width: 600px) {
    /* Başlık görseli için responsive ayar */
    .main-title-img-container img {
        max-width: 90%; /* Küçük ekranlarda başlık görseli biraz küçülsün */
    }

    .social-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }

    .social-box .label {
        margin-bottom: 5px;
    }

    .social-box .value {
        text-align: left;
        width: 100%;
    }

    .logo-footer img {
        max-width: 120px;
    }
}

@media (max-width: 400px) {
    .social-box {
        padding: 10px;
    }

    .social-box .label,
    .social-box .value {
        font-size: 1em;
    }
}