.content{
    margin-top: 3rem;
    margin-bottom: 28rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10rem;
}

.tittle {
    text-align: center;
    font-size: 8rem;
    color: white;
}

.description {
    text-align: center;
    font-size: 2rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.button-terms{
    display: inline-block;
    color: white;
    font-size: 2rem;
    text-decoration: underline;
    cursor: pointer;
}

.terms-check-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8rem;
    color: white;
}

.age-confirmation {
    font-size: 3rem;
}

.terms-confirmation {
    font-size: 3rem;
}

.toggle-row {
    display: flex;
    align-items: center;
    gap: 25px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 18rem;
    aspect-ratio: 233 / 127;
    flex-shrink: 0;
    cursor: pointer;
}

.toggle-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.toggle-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.25s ease;
}

.toggle-img-on {
    opacity: 0;
}

.toggle-input:checked ~ .toggle-img-off {
    opacity: 0;
}

.toggle-input:checked ~ .toggle-img-on {
    opacity: 1;
}

.continue-button {
    width: 100%;
    text-align: center;
}

.glass-button{
    padding: 1.5rem 20rem;
}

.modal-toggle {
    display: none;
}

.modal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
}

#terms-modal-toggle:checked ~ .modal-backdrop.terms-modal {
    display: block;
}

#warning-modal-toggle:checked ~ .modal-backdrop.warning-modal {
    display: block;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    cursor: pointer;
}

.modal-box {
    position: relative;
    z-index: 1;
    width: min(900px, 90%);
    max-height: 80vh;
    overflow-y: auto;
    margin: 10vh auto 0;
    background: #ffffff;
    border-radius: 24px;
    padding: 60px;
    color: #111111;
}

.modal-box h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.modal-box p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    line-height: 1;
    color: #333333;
    cursor: pointer;
}

.modal-box-warning {
    width: min(600px, 90%);
    max-height: none;
    margin: 0 auto;
    text-align: center;
}

.warning-modal .modal-box-warning {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}
