/* OSNOVNI STIL (za Desktop/Kompjutere) */
body {
    background-color: #000; /* Crna pozadina je standard za adult sajtove */
    color: white;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    text-align: center;
}

h1 { font-size: 40px; margin-bottom: 10px; }
.warning-text { font-size: 24px; color: red; font-weight: bold; }
.info-text { font-size: 18px; margin: 20px 0; }

.enter-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #ff0000;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    font-size: 20px;
}

/* --- REŠENJE ZA MOBILNE (Width manji od 600px) --- */
@media only screen and (max-width: 600px) {
    h1 {
        font-size: 40px; /* Povećano ime sajta */
    }
    .warning-text {
        font-size: 30px; /* Povećano 18+ upozorenje */
    }
    .info-text {
        font-size: 14px; /* Povećan sitan tekst */
        padding: 0 10px;
    }
    .enter-button {
        font-size: 30px; /* Povećano dugme za lakši klik prstom */
        width: 60%;      /* Dugme zauzima skoro celu širinu ekrana */
        padding: 20px 0;
    }
}
