/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: black;
    color: white;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

.landing-container {
    flex: 0.5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
}

.question {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.buttons {
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.button {
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    margin: 5px;
    border-radius: 5px;
    transition: transform 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 3rem;
    line-height: 1.2;
}

.paw-button {
    background-color: #45f882;
    color: white;
    text-decoration: none;
}

.exit-button {
    background-color: gray;
    color: black;
}

.button:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .buttons {
        flex-direction: column;
        align-items: center;
    }

    .button {
        width: 100%;
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .button {
        padding: 15px;
        font-size: 1.1rem;
    }
}

.footer {
    text-align: center;
    /*margin-top: auto;*/
    padding: 2em;
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    color: white;
    font-size: 0.9rem;
    /*margin-bottom: 50px;*/
}

.footer a {
    color: #45f882;
    text-decoration: none;
    margin: 0 10px;
}

.footer a:hover {
    text-decoration: underline;
}

.disclaimer {
    margin-top: 1rem;
    margin-bottom: 3rem;
    font-size: 1rem;
    color: gray;
    padding: 0 2rem;
    text-align: center;
}

.disclaimer b {
    color: #45f882;
}

/* Popup */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.popup.hidden {
    display: none;
}

.popup-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    color: black;
    width: 90%;
    max-width: 400px;
}

.popup-content-tc {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    color: black;
    width: 90%;
    max-width: 500px;
}

.popup-content-tc h6 {
    font-size: 1.2rem;
    line-height: 1.5;
}

.popup-content-tc p {
    margin-bottom: 1rem;
    margin-top: 1rem;
    font-size: 1.2rem;
    line-height: 1.5;
}

.popup-content-tc button {
    margin: 10px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background: #45f882;
    color: white;
}

.popup-content-tc button:last-child {
    background: gray;
    color: white;
}

.popup-content button {
    margin: 10px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background: #45f882;
    color: white;
}

.popup-content button:last-child {
    background: gray;
    color: white;
}

.gate-title {
    margin-bottom: 5rem;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    color: white;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .question {
        font-size: 1.7rem;
    }

    .button {
        padding: 8px 12px;
        font-size: 1rem;
    }

    .gate-title {
        font-size: 1.2rem;
    }

    .footer {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .question {
        font-size: 1.4rem;
    }

    .button {
        padding: 6px 10px;
        font-size: 0.9rem;
    }

    .gate-title {
        margin-bottom: 2rem;
        font-size: 1rem;
    }

    .footer {
        font-size: 0.7rem;
    }

    .disclaimer {
        font-size: 0.7rem;
    }
}

.sub-head {
    font-size: 1.2rem;
    font-weight: normal;
    color: gray;
    text-align: center;
    margin: 0.5rem 0 5rem;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .sub-head {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .sub-head {
        font-size: 0.9rem;
    }
}


@media (min-width: 1024px) {
    .disclaimer {
        width: 60%;
        margin: 1rem auto 3rem; /* Center horizontally */
    }
}

