.banner {
    padding: 20px 100px 100px 100px;
    position: relative;
    background-color: rgb(29, 29, 29);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* Ensures content stacks nicely */
    text-align: center;
}

.textBox {
    max-width: 900px;
    margin: 0 auto;
}

#constantly-updating {
    color: rgb(85, 85, 85);
    margin-bottom: 40px;
    font-size: 50px;
}

.banner p {
    font-size: 18px;
    color: white;
    line-height: 2em;
}

.banner p span {
    font-size: 42px;
    font-weight: bold;
    letter-spacing: 1.5px;
    display: block;
    margin-top: 10px;
}

.banner h3 {
    font-size: 1.2em;
    color: white;
    margin-bottom: 20px;
    font-weight: 500;
}

.btn {
    margin: 10px;
    width: 45%;
    max-width: 250px;
    background-color: white;
    color: black;
    font-weight: bold;
    font-size: 12px;
    display: inline-block;
    padding: 12px 30px;
    letter-spacing: 1.5px;
    border: 2px solid white;
    margin-top: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: rgb(29, 29, 29);
    color: white;
    border: 2px solid white;
}

/* ---------- Responsive ---------- */
@media screen and (max-width: 1024px) {
    .banner {
        padding: 50px;
    }

    #constantly-updating {
        font-size: 36px;
    }

    .banner p {
        font-size: 16px;
    }

    .banner p span {
        font-size: 32px;
    }
}

@media screen and (max-width: 768px) {
    .banner {
        padding: 40px 20px;
    }

    #constantly-updating {
        font-size: 28px;
    }

    .banner p {
        font-size: 15px;
    }

    .banner p span {
        font-size: 26px;
    }

    .btn {
        width: 80%;
        max-width: none;
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    #constantly-updating {
        font-size: 22px;
    }

    .banner p span {
        font-size: 22px;
    }

    .banner p {
        font-size: 14px;
        line-height: 1.6em;
    }

    .btn {
        width: 100%;
        padding: 10px 20px;
        font-size: 13px;
    }
}