* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0b0f0c;
    color: #fff;
    line-height: 1.6;
	padding-top: 80px;
	cursor: url('joint.png'), auto;
}

/* NAV (GLOBAL) */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    padding: 0 60px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.logo {
    color: #4ade80;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
	font-size: 24px;
    letter-spacing: 0.5px;
}

/* GLOBAL BUTTON */
.btn {
    background: #4ade80;
    color: #000;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

/* FOOTER (GLOBAL) */
.footer {
    background: #0a0a0a;
    padding: 30px 20px;
    text-align: center;
    margin-top: auto;
}

.footer-btn {
    display: inline-block;
    margin: 5px;
    padding: 10px 18px;
    background: #222;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
}

.footer-btn:hover {
    background: #4ade80;
    color: #000;
}

/* PAGE LAYOUT FIX (Footer unten halten) */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}