* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #ff758c, #ff7eb3);
    color: white;
}

/* FULL PAGE SECTIONS */
.page {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.hidden {
    display: none;
}

/* COUNTDOWN */
#countdown {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

#countdown div {
    background: rgba(255,255,255,0.2);
    padding: 20px;
    border-radius: 12px;
    min-width: 100px;
}

#countdown span {
    font-size: 2rem;
    font-weight: bold;
}

/* NAV BUTTONS */
.nav-buttons {
    position: fixed;
    bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 30px;
}

button {
    background: white;
    color: #ff4f81;
    border: none;
    padding: 14px 20px;
    font-size: 1.3rem;
    border-radius: 50%;
    cursor: pointer;
}

.hidden {
    display: none !important;
}
