/* Ortak Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: #fff;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Particles Container */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Mouse olaylarını alt katmanlara geçirir */
}

/* Ana İçerik */
.main-content {
    position: relative;
    width: 100%;
}

/* Tüm tıklanabilir öğeler için */
a, button, [role="button"], 
input[type="submit"], 
input[type="button"], 
input[type="reset"],
.clickable {
    position: relative;
    z-index: 10;
}

/* Hover efektleri için */
*:hover {
    z-index: 15;
} 