@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: #050505;
    color: #e0e0e0;
    display: flex;
    flex-direction: column;
}

.title-font {
    font-family: 'Space Grotesk', sans-serif;
}

.neon-text {
    text-shadow: 0 0 10px #00f0ff, 0 0 20px #00f0ff, 0 0 40px #00f0ff;
}

main {
    flex: 1 0 auto;     /* to jest klucz */
}

footer {
    flex-shrink: 0;     /* stopka nie może się kurczyć */
    background: #0a0a0a;
    border-top: 1px solid rgba(0, 240, 255, 0.1);
    padding: 1.5rem 0;
}