body {
  padding-top: 69px;
}
.top-banner {
    color: white;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    width: 100%;
    flex-wrap: wrap;
}

.banner-text {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
}

.banner-highlight {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    margin: 0 4px;
}

.banner-button {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    backdrop-filter: blur(10px);
}

.banner-button:focus, .banner-button:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    color: inherit;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.banner-button:active, .banner-button:visited {
    color: inherit;
}

.close-button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.close-button:hover, .close-button:hover {
    background: rgba(255, 255, 255, 0.2);
    color: inherit;
    transform: translateY(-50%) scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-banner {
        padding: 10px 15px;
        min-height: 80px;
    }
    
    .banner-content {
        gap: 15px;
        flex-direction: column;
        text-align: center;
    }
    
    .banner-text {
        font-size: 14px;
    }
    
    .banner-button {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .close-button {
        right: 10px;
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .banner-text {
        font-size: 13px;
    }
    
    .banner-highlight {
        padding: 2px 6px;
        font-size: 12px;
    }
    
    .banner-button {
        padding: 6px 14px;
        font-size: 12px;
    }
}