@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

* {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #0D0D0D;
    color: #FFFFFF;
}

.gradient-text {
    background: linear-gradient(135deg, #0057FF 0%, #4A9EFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-bg {
    background: linear-gradient(135deg, #0057FF 0%, #003BB8 100%);
}

.glow {
    box-shadow: 0 0 60px rgba(0, 87, 255, 0.3);
}

.card {
    background-color: #1A1A1A;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
}

.card:hover {
    border-color: rgba(0, 87, 255, 0.4);
}

.btn-primary {
    background-color: #0057FF;
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background-color: #003BB8;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    border-color: #0057FF;
    background-color: rgba(0, 87, 255, 0.1);
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}

.nav-link:hover {
    color: white;
}

.nav-link.active {
    color: white;
}

/* Yasal sayfa içerik tipografisi */
.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-content ul {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    list-style: disc;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content strong {
    color: white;
}
