@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

/* Top Bar Styling */
#top-bar {
    background: #007bff;
    color: white;
    padding: 10px;
    font-size: 18px;
    font-weight: 400;
    overflow: hidden;
    white-space: nowrap;
}

#rotating-message a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

/* Typing Effect */
.typing::after {
    content: "|";
    display: inline-block;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

/* Ad Banner Styling */
#ad-banner {
    margin: 10px auto;
    width: 728px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Iframe */
#iframe-container {
    width: 100%;
    height: 80vh;
    margin-top: 10px;
}

#iframe-container iframe {
    width: 100%;
    height: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    #ad-banner {
        width: 468px;
        height: 60px;
    }
}
