/* General Styling */
body, html {
    margin: 0;
    padding: 0;
    font-family: "Host Grotesk", sans-serif;
    background: linear-gradient(120deg, #11264c, #143766);
    overflow: hidden;
    color: #fff;
}

/* Header */
.header {
    background-color: #11264c;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    height: 50px;
}

/* Popup */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    animation: popup-slide 0.5s ease-in-out;
    color: #fff;
}

@keyframes popup-slide {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    color: #fff;
}

/* Emoji Animation */
.floating-emoji {
    position: absolute;
    font-size: 1.5em;
    animation: float-emojis 5s linear infinite;
    opacity: 0.6;
}

@keyframes float-emojis {
    from {
        transform: translate(0, 100vh);
        opacity: 0.8;
    }
    to {
        transform: translate(0, -20vh);
        opacity: 0;
    }
}

/* Messaging Bar */
.messaging-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #11264c;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.input-area {
    display: flex;
    width: 90%;
    max-width: 600px;
}

.input-area input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 8px;
    font-size: 1em;
}

.input-area button {
    background: none;
    border: none;
    margin-left: 5px;
    font-size: 1.5em;
    cursor: pointer;
}