/* Security Modal Styles for Private Key Notice */

.security-modal {
    max-width: 500px;
}

.security-modal .modal-header {
    padding: 24px 24px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.security-icon {
    font-size: 48px;
    margin-bottom: 12px;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.security-modal h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
}

.security-modal .modal-body {
    padding: 24px;
}

.security-notice {
    background: rgba(0, 122, 204, 0.08);
    border: 1px solid rgba(0, 122, 204, 0.2);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
}

.notice-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 14px;
    padding: 10px;
    border-radius: 6px;
    transition: background 0.2s;
}

.notice-item:last-child {
    margin-bottom: 0;
}

.notice-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.notice-item.warning {
    background: rgba(246, 133, 27, 0.15);
    border: 1px solid rgba(246, 133, 27, 0.3);
}

.notice-icon {
    font-size: 18px;
    margin-right: 12px;
    flex-shrink: 0;
    margin-top: 2px;
    color: #4ade80;
}

.notice-item.warning .notice-icon {
    color: #f6851b;
}

.notice-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #d4d4d4;
}

.notice-item p strong {
    color: #fff;
    font-weight: 600;
}

.security-reminder {
    background: rgba(255, 255, 255, 0.05);
    padding: 14px;
    border-radius: 6px;
    font-size: 13px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.security-reminder strong {
    color: #fff;
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.security-reminder ul {
    margin: 8px 0 0 20px;
    padding: 0;
    color: #b4b4b4;
}

.security-reminder li {
    margin-bottom: 6px;
    line-height: 1.5;
}

.security-reminder li:last-child {
    margin-bottom: 0;
}

.security-modal .modal-footer {
    padding: 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dont-show-again {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #999;
    cursor: pointer;
    transition: color 0.2s;
}

.dont-show-again:hover {
    color: #ccc;
}

.dont-show-again input[type="checkbox"] {
    margin-right: 8px;
    width: 16px;
    height: 16px;
    cursor: pointer;
}