/* Genel Sıfırlama */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    /* Derinlik katmak için hafif bir radial gradient */
    background: radial-gradient(circle, #1a1a1a 0%, #000000 100%);
    color: #ffffff;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Source Sans 3', sans-serif;
    overflow: hidden;
}

.coming-soon-wrapper {
    text-align: center;
    animation: fadeInPage 2s ease-in-out;
}

/* Logo Stili */
.logo-container {
    margin-bottom: 50px;
}

.main-logo {
    max-width: 450px;
    width: 85%;
    height: auto;
    /* Logodaki altın detayları öne çıkaran hafif ışıltı */
    filter: drop-shadow(0px 0px 20px rgba(212, 175, 55, 0.15));
}

/* Yazı Stilleri */
.premium-title {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    letter-spacing: 10px;
    text-transform: uppercase;
    color: #d4af37; /* Logo ile uyumlu Gold rengi */
    font-weight: 400;
    opacity: 0.9;
}

/* Hareketli Alt Çizgi */
.accent-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    margin: 30px auto 0;
    animation: lineExpand 4s infinite ease-in-out;
}

/* Animasyon Tanımları */
@keyframes fadeInPage {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes lineExpand {
    0%, 100% { width: 60px; opacity: 0.2; }
    50% { width: 200px; opacity: 1; }
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .premium-title { font-size: 1.1rem; letter-spacing: 5px; }
    .main-logo { max-width: 300px; }
}