:root {
    --deep-space: #0a0f1c;
    --deep-navy: #0d1424;
    --navy: #111a2e;
    --light-navy: #1a243f;
    --lightest-navy: #252f4a;
    --slate: #7a85a0;
    --light-slate: #94a1c0;
    --lightest-slate: #b8c2e0;
    --white: #e6ecff;
    --accent: #64ffda;
    --accent-light: #88ffdf;
    --accent-dark: #4fd1c7;
    
    --gradient-primary: linear-gradient(135deg, #0a0f1c 0%, #0d1424 100%);
    --gradient-accent: linear-gradient(135deg, #64ffda 0%, #4fd1c7 100%);
    --gradient-card: linear-gradient(145deg, #111a2e 0%, #1a243f 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--light-slate);
    background: var(--deep-space);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* TÜM LINK'LER İÇİN GÜVENLİK - HITBOX PROBLEMİ ÖNLENDİ */
a {
    position: relative;
    z-index: 1;
}

/* LOGO ÖNCELİĞİ */
.logo {
    z-index: 1002 !important;
}

/* MOBİL MENÜ BUTONU ÖNCELİĞİ */
.mobile-menu-btn {
    z-index: 1003 !important;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--deep-navy);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-light);
}