body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ===== Marquee (Improved smoothness) ===== */
.marquee-container {
    background: #0b76ff;
    color: white;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 12px 0;
    display: flex;
    align-items: center;
}

.marquee-text {
    display: inline-block;
    padding-left: 100%;
    /* Starting point off-screen to the right */
    animation: marquee 35s linear infinite;
    /* Increased time to 35s for a slower pace */
    will-change: transform;
    /* Enables hardware acceleration for smoothness */
    font-size: 18px;
}

.marquee-text a {
    color: #ffeb3b;
    font-weight: bold;
    cursor: pointer;
    text-decoration: underline;
    margin: 0 5px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.marquee-container:hover .marquee-text {
    animation-play-state: paused;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    width: 350px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

h3 {
    margin-top: 0;
    color: #333;
}

input,
textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 12px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

button {
    background: #0b76ff;
    color: white;
    border: none;
    padding: 12px;
    cursor: pointer;
    width: 100%;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.3s;
}

button:hover {
    background: #0056cc;
}

#status {
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
}