/* ==================== Notice Plugin Styles ==================== */
.notice-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.notice-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.notice-modal__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.notice-modal__container {
    position: relative;
    width: 90%;
    max-width: 400px;
    max-height: 85vh;
    background: linear-gradient(135deg, #2a2640 0%, #1e1b29 100%);
    border-radius: 16px;
    border: 1px solid rgba(111, 92, 255, 0.3);
    overflow: hidden;
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.notice-modal__header {
    padding: 20px 20px 16px;
    background: linear-gradient(135deg, rgba(111, 92, 255, 0.15), rgba(245, 211, 108, 0.05));
    border-bottom: 1px solid rgba(111, 92, 255, 0.2);
    text-align: center;
}

.notice-modal__title {
    font-size: 18px;
    font-weight: 600;
    color: #f5d36c;
    margin-bottom: 4px;
}

.notice-modal__date {
    font-size: 12px;
    color: rgba(232, 230, 240, 0.5);
}

.notice-modal__body {
    padding: 24px 20px;
    max-height: 50vh;
    overflow-y: auto;
}

.notice-modal__content {
    font-size: 15px;
    line-height: 1.8;
    color: #e8e6f0;
    white-space: pre-wrap;
}

.notice-modal__footer {
    padding: 16px 20px;
    background: rgba(30, 27, 41, 0.5);
    border-top: 1px solid rgba(111, 92, 255, 0.2);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.notice-modal__options {
    display: flex;
    gap: 8px;
}

.notice-modal__btn {
    flex: 1;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.notice-modal__btn--secondary {
    background: rgba(111, 92, 255, 0.15);
    color: #b8aeff;
    border: 1px solid rgba(111, 92, 255, 0.3);
}

.notice-modal__btn--secondary:hover {
    background: rgba(111, 92, 255, 0.25);
}

.notice-modal__btn--primary {
    background: linear-gradient(135deg, #6f5cff 0%, #5a47d9 100%);
    color: #fff;
    border: 1px solid rgba(111, 92, 255, 0.5);
}

.notice-modal__btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(111, 92, 255, 0.4);
}

.notice-modal__close-btn {
    width: 100%;
    padding: 12px;
    background: rgba(232, 230, 240, 0.1);
    color: #e8e6f0;
    border-radius: 8px;
    font-size: 14px;
    border: 1px solid rgba(232, 230, 240, 0.2);
    transition: all 0.3s;
}

.notice-modal__close-btn:hover {
    background: rgba(232, 230, 240, 0.15);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* 스크롤바 스타일 */
.notice-modal__body::-webkit-scrollbar {
    width: 6px;
}

.notice-modal__body::-webkit-scrollbar-track {
    background: rgba(111, 92, 255, 0.1);
    border-radius: 3px;
}

.notice-modal__body::-webkit-scrollbar-thumb {
    background: rgba(111, 92, 255, 0.3);
    border-radius: 3px;
}

.notice-modal__body::-webkit-scrollbar-thumb:hover {
    background: rgba(111, 92, 255, 0.5);
}
