/* YoroiSoft Kurumsal Stil Dosyasi */
:root {
    --primary: #1e40af;
    --accent: #dc2626;
    --bg-light: #ffffff;
    --bg-soft: #f8fafc;
    --text-dark: #0f172a;
    --text-muted: #64748b;
}

body { 
    font-family: 'Inter', sans-serif; 
    scroll-behavior: smooth; 
}

.animate-shine-slow { 
    background-size: 200% auto; 
    animation: shine 3s linear infinite; 
}

@keyframes shine { 
    to { background-position: 200% center; } 
}

/* Form Odaklanma */
input:focus {
    border-color: var(--accent) !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

section {
    position: relative;
}

/* YoroiSoft Resmi Logo Stili */
.yoroi-logo {
    display: inline-flex;
    align-items: center;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-family: 'Inter', sans-serif;
}
.yoroi-logo .red-part {
    color: #dc2626; /* Tailwind Red-600 */
}
.yoroi-logo .white-part {
    color: #ffffff;
}