/* Domain Migration Notice Banner */
.migration-banner {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 15px 0;
    text-align: center;
    position: relative;
    z-index: 1051;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-size: 15px;
    line-height: 1.6;
}

.migration-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.migration-banner-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    margin-right: 10px;
}

.migration-banner-icon i {
    font-size: 20px;
}

.migration-banner-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.migration-banner-text {
    margin: 0;
}

.migration-banner-text strong {
    color: #ffd700;
    font-weight: 600;
}

.migration-banner-link {
    color: #fff;
    text-decoration: underline;
    transition: opacity 0.3s;
}

.migration-banner-link:hover {
    color: #ffd700;
    opacity: 0.9;
}

.migration-banner-close {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.8);
    font-size: 24px;
    cursor: pointer;
    padding: 0 10px;
    transition: color 0.3s;
}

.migration-banner-close:hover {
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .migration-banner {
        font-size: 14px;
        padding: 12px 10px;
    }
    
    .migration-banner-icon {
        width: 35px;
        height: 35px;
        margin-right: 8px;
    }
    
    .migration-banner-icon i {
        font-size: 18px;
    }
    
    .migration-banner .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .migration-banner-content {
        text-align: center;
    }
}

/* Push down header when banner is visible */
.has-migration-banner .site-header {
    margin-top: 0;
    transition: margin-top 0.3s ease;
}