/* Notice Banner Styles */
#notice-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 20px 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 99999;
    font-family: 'Lato', 'Arial', sans-serif;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#notice-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

#notice-banner-text {
    flex: 1;
    min-width: 250px;
}

#notice-banner-text h3 {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

#notice-banner-text p {
    margin: 0;
    font-size: 15px;
    opacity: 0.95;
    line-height: 1.4;
}

#notice-banner-button {
    display: inline-block;
    background: #ffffff;
    color: #667eea;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

#notice-banner-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

#notice-banner-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

#notice-banner-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

body.has-notice-banner {
    padding-top: 100px !important;
}

@media (max-width: 768px) {
    #notice-banner {
        padding: 15px 10px 15px 10px;
    }

    #notice-banner-content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    #notice-banner-text h3 {
        font-size: 18px;
    }

    #notice-banner-text p {
        font-size: 14px;
    }

    #notice-banner-button {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }

    body.has-notice-banner {
        padding-top: 140px !important;
    }
}

@media (max-width: 480px) {
    #notice-banner-text h3 {
        font-size: 16px;
    }

    #notice-banner-text p {
        font-size: 13px;
    }
}
