/* KAIZOKUODLE - COMMON STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', sans-serif;
    background: url('../images/background.webp') center center / cover no-repeat fixed;
    min-height: 100vh;
    color: #fff;
    padding: 1.5rem;
    position: relative;
    zoom: 0.85;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 41, 0.85);
    z-index: -1;
    pointer-events: none;
}

.title-font {
    font-family: 'Bangers', cursive;
    letter-spacing: 2px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    body { zoom: 0.75; padding: 1.2rem; }
}

@media (max-width: 768px) {
    body { zoom: 1; padding: 1rem; }
    h1 { font-size: 2rem !important; }
}

@media (max-width: 480px) {
    body { padding: 0.75rem; }
    h1 { font-size: 1.5rem !important; }
    button { font-size: 0.85rem !important; padding: 0.6rem 1rem !important; }
}
