:root {
    --bg: #0a0a0c;
    --card-bg: rgba(255, 255, 255, 0.03);
    --primary: #6366f1;
    --text: #f8fafc;
    --text-dim: #94a3b8;
    --accent: #00f2ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Modern Arka Plan Animasyonu */
.blur-blob {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    z-index: -1;
}

.secondary {
    top: 60%;
    left: -150px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.08) 0%, transparent 70%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

header {
    padding: 40px 0;
}

.brand {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -1px;
    color: var(--text);
}

.brand span {
    color: var(--primary);
    margin-left: 2px;
}

.hero {
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    max-width: 900px;
    margin-bottom: 24px;
}

.main-title span {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-dim);
    max-width: 650px;
    margin-bottom: 40px;
}

/* Durum Rozeti (Tıklanamaz Buton Yerine) */
.status-badge {
    display: inline-flex;
    align-items: center;
    background: var(--card-bg);
    padding: 12px 24px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.1);
    font-weight: 600;
    color: var(--text);
    font-size: 0.9rem;
    margin-bottom: 60px;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 10px var(--accent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 800px;
}

.stat-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
}

.stat-card h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 5px;
}

.stat-card p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.platforms {
    margin-top: 80px;
}

.platforms p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #444;
    margin-bottom: 20px;
}

.logos {
    display: flex;
    gap: 40px;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    opacity: 0.5;
}

footer {
    padding: 60px 0 40px;
    text-align: center;
    font-size: 0.8rem;
    color: #444;
}

/* Mobil Optimizasyon */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .hero {
        padding: 40px 0;
    }
}
