
:root {
    --premium-gold: #c5a059;
    --midnight-deep: #050410;
}

body, html {
    height: 100%;
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--midnight-deep);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Arka Plan Efekti (Dumanlı/Granüllü) */
.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(197, 160, 89, 0.05) 0%, rgba(5, 4, 16, 1) 70%);
    z-index: 1;
}

.content-box {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.logo-area h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 8vw, 80px);
    color: var(--premium-gold);
    letter-spacing: 10px;
    text-transform: uppercase;
    margin-bottom: 10px;
    animation: fadeInDown 1.5s ease-out;
}

.divider {
    width: 60px;
    height: 2px;
    background-color: var(--premium-gold);
    margin: 20px auto;
    animation: scaleIn 1s ease-out 0.5s both;
}

.status-text {
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 40px;
    animation: fadeIn 2s ease-out 1s both;
}

.main-message {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 50px;
    animation: fadeInUp 1.5s ease-out 0.8s both;
}

/* Geri Sayım veya Kahve Efekti (Opsiyonel) */
.loader-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: var(--premium-gold);
    border-radius: 50%;
    animation: pulse 1.5s infinite ease-in-out;
}

.dot:nth-child(2) { animation-delay: 0.2s; }
.dot:nth-child(3) { animation-delay: 0.4s; }

/* Animasyonlar */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Alt Bilgi */
.footer-note {
    position: absolute;
    bottom: 40px;
    width: 100%;
    text-align: center;
    font-size: 11px;
    color: #444;
    letter-spacing: 2px;
    z-index: 2;
}
