.btn {
    background: var(--accent);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    line-height: 1.2;
    text-align: center;
}

.btn:hover {
    opacity: 0.85;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(138, 79, 255, 0.3);
}

.btn i {
    margin-right: 0.5rem;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.modal-close:hover {
    color: white;
}

/* ── Liquid-Glass Action Buttons ─── */
.action-btn {
    background: linear-gradient(135deg, #ff8a3d, #ffb27a);
    color: #111;
    padding: 0.7rem 1.4rem;
    border-radius: 99px;
    font-weight: 700;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    height: 44px;
    position: relative;
    overflow: hidden;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 138, 61, 0.35);
}

.action-btn .btn-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.action-btn:hover .btn-glow {
    transform: translateX(100%);
}

.action-btn-outline {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 154, 61, 0.4);
    color: #ffb27a;
    padding: 0.7rem 1.4rem;
    border-radius: 99px;
    font-weight: 600;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    transition: all 0.2s;
    height: 44px;
}

.action-btn-outline:hover {
    background: rgba(255, 154, 61, 0.1);
    border-color: #ffb27a;
}

.action-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.action-icon:hover {
    background: rgba(255, 154, 61, 0.15);
    color: #ffb27a;
}

.action-icon-danger {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    opacity: 0.8;
}

.action-icon-danger:hover {
    background: rgba(255, 95, 95, 0.15);
    opacity: 1;
}