@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-dark: #06070a;
    --primary-grad: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    --card-bg: rgba(255, 255, 255, 0.02);
    --border-color: rgba(255, 255, 255, 0.08);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: white;
    overflow-x: hidden;
}

/* Arka Plan Gradient Katmanı */
.bg-gradient-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% -20%, rgba(99, 102, 241, 0.15), transparent 50%),
                radial-gradient(circle at 0% 100%, rgba(168, 85, 247, 0.1), transparent 40%);
    z-index: -1;
}

/* Hero Video Maskeleme */
.video-mask {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(6, 7, 10, 0.2) 0%, rgba(6, 7, 10, 1) 95%);
    z-index: 10;
}

/* Premium Gradient Yazı */
.text-gradient {
    background: var(--primary-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Soft Glass Card */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-10px);
}

/* FAQ Accordion Stili */
details summary::-webkit-details-marker { display:none; }
details summary { list-style: none; }