#moving-notice {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 15px 0;
    text-align: center;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    border-bottom: 3px solid #d63031;
}

#moving-notice .notice-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

#moving-notice h2 {
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

#moving-notice p {
    margin: 0 0 15px 0;
    font-size: 16px;
    line-height: 1.4;
}

#moving-notice .new-site-link {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: bold;
    transition: all 0.3s ease;
    margin: 0 10px;
}

#moving-notice .new-site-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

#moving-notice .close-notice {
    position: absolute;
    top: 10px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

#moving-notice .close-notice:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    #moving-notice h2 {
        font-size: 20px;
    }

    #moving-notice p {
        font-size: 14px;
    }

    #moving-notice .new-site-link {
        display: block;
        margin: 10px auto;
        width: fit-content;
    }
}
