/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Chivo+Mono:wght@400;500;700&family=Manrope:wght@400;500;600;700;800&display=swap');

/* Temel Ayarlar */
body {
    background-color: #f4f4f5; /* Endüstriyel Zemin */
    font-family: 'Manrope', sans-serif;
    color: #09090b;
    -webkit-font-smoothing: antialiased;
}

/* Teknik Veriler ve Alt Başlıklar İçin Mono Font */
.font-mono-tech {
    font-family: 'Chivo Mono', monospace;
}

/* Mühendislik / Milimetrik Grid Arka Plan (Sadece istenen bölümlerde kullanılacak) */
.bg-tech-grid {
    background-size: 40px 40px;
    background-image: 
        linear-gradient(to right, rgba(9, 9, 11, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(9, 9, 11, 0.05) 1px, transparent 1px);
}

/* Noktalı (Dot) Arka Plan (Koyu bölümler için) */
.bg-dark-dots {
    background-color: #09090b;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Endüstriyel Keskin Buton Stili (Kutu gibi, modern ve sert) */
.btn-industrial {
    position: relative;
    box-shadow: 5px 5px 0px 0px #09090b;
    transition: all 0.2s ease;
}

.btn-industrial:hover {
    box-shadow: 0px 0px 0px 0px #09090b;
    transform: translate(5px, 5px);
}

.btn-outline-industrial {
    position: relative;
    box-shadow: 5px 5px 0px 0px #ff6b00;
    transition: all 0.2s ease;
}

.btn-outline-industrial:hover {
    box-shadow: 0px 0px 0px 0px #ff6b00;
    transform: translate(5px, 5px);
}

/* Metin Seçim Rengi */
::selection {
    background-color: #ff6b00;
    color: #ffffff;
}