body {
    margin: 0;
    overflow: hidden;
    background-color: #000;
}

#banner-container {
    position: relative;
    width: 100vw;
    height: 100vh;
}

#globeViz {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#sms-card-container {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    height: 100px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: #fff;
    font-family: sans-serif;
    font-size: 1.5em;
    text-align: center;
}

.sms-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.sms-card.active {
    display: flex;
    opacity: 1;
}

.sms-content {
    font-size: 1.5em;
    font-weight: bold;
}

.sms-number {
    font-size: 0.8em;
    color: #ccc;
    margin-top: 5px;
}