/* 1. KÜRESEL SIFIRLAMA */
* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: 'Segoe UI', Arial, sans-serif; 
    background-color: #1a1a1a; 
    color: white;
    overflow-x: hidden;
    min-height: 100vh;
}

/* 2. MÜHÜRLENMİŞ NAVİGASYON (Asla Zıplamaz) */
nav {
    height: 80px;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    border-bottom: 2px solid #ff0000;
}

nav .logo img { height: 45px; width: auto; }

nav ul { display: flex; list-style: none; gap: 25px; }

nav ul li a { 
    color: white; 
    text-decoration: none; 
    font-weight: bold; 
    text-transform: uppercase; 
    font-size: 14px; 
    transition: 0.3s;
}
nav ul li a:hover { color: #ff0000; }

/* 3. ORTAK SAYFA YAPISI */
.page-wrapper {
    padding-top: 100px; /* Navigasyonun altına girmesini engeller */
    min-height: calc(100vh - 80px);
}

/* 4. FOOTER STANDARDI */
footer {
    background: #000;
    padding: 30px;
    text-align: center;
    font-size: 12px;
    color: #666;
    border-top: 1px solid #222;
}

/* 5. DİĞER ÖZEL BİLEŞENLER (Buraya sadece gerekli olanları ekle) */
.side-title {
    color: #ff0000;
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    border-bottom: 2px solid #ff0000;
    margin-bottom: 20px;
    padding-bottom: 10px;
}