/* style.css - Full Premium Version */
:root {
    --primary-color: #03448d; /* JS tarafından otomatik değiştirilir */
    --text-main: #1e293b;
    --text-muted: #64748b;
    --card-bg: rgba(255, 255, 255, 0.85);
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background: #f1f5f9;
    background-image: radial-gradient(at 0% 0%, rgba(37, 99, 235, 0.1) 0px, transparent 50%),
                      radial-gradient(at 100% 100%, rgba(37, 99, 235, 0.1) 0px, transparent 50%);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

body::before {
    content: "";
    position: absolute;
    width: 400px; height: 400px;
    background: var(--primary-color);
    filter: blur(120px);
    opacity: 0.1;
    top: -100px; right: -100px;
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 480px;
    padding: 20px;
}

/* --- GİRİŞ ANİMASYONU --- */
.card {
    background: var(--card-bg);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    padding: 60px 45px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: cardEntry 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes cardEntry {
    0% { opacity: 0; transform: translateY(30px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.card:hover { transform: translateY(-8px); }

/* --- SIRALI GELİŞ (STAGGER) --- */
.logo-wrapper, .status-dot-wrapper, h1, p, .loader, footer {
    opacity: 0;
    animation: elementFadeIn 0.8s ease forwards;
}

@keyframes elementFadeIn {
    to { opacity: 1; transform: translateY(0); }
}

.logo-wrapper { animation-delay: 0.2s; }
.status-dot-wrapper { animation-delay: 0.3s; }
h1 { animation-delay: 0.4s; }
p { animation-delay: 0.5s; }
.loader { animation-delay: 0.6s; }
footer { animation-delay: 0.8s; }

.logo-wrapper { margin-bottom: 40px; display: flex; justify-content: center; }
.logo-wrapper img { max-height: 65px; max-width: 240px; object-fit: contain; }

.status-dot-wrapper {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.6);
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 25px;
}

.status-dot {
    width: 10px; height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    margin-right: 12px;
    box-shadow: 0 0 12px var(--primary-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.7; }
}

.status-text {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- DİNAMİK RENKLİ BAŞLIK VE VURGU --- */
h1 {
    color: var(--text-main);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.2;
}

h1 span {
    /* BURASI ÖNEMLİ: Renk artık logoyla aynı olacak */
    color: var(--primary-color); 
    position: relative;
    display: inline-block;
    z-index: 1;
}

p { color: var(--text-muted); font-size: 15px; line-height: 1.7; margin-bottom: 35px; }

.loader {
    width: 100%; height: 5px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.loader::after {
    content: '';
    position: absolute;
    width: 40%; height: 100%;
    background: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-color);
    animation: slide 2s infinite ease-in-out;
}

@keyframes slide {
    0% { left: -40%; }
    100% { left: 100%; }
}

footer { font-size: 12px; color: #94a3b8; border-top: 1px solid rgba(0,0,0,0.05); padding-top: 25px; }